:root {
  --ink: #171a1d;
  --muted: #70767b;
  --line: rgba(23, 26, 29, 0.12);
  --blue: #0799d5;
  --blue-bright: #21b8ed;
  --lime: #c9f46b;
  --paper: #f3f4f2;
  --white: #ffffff;
  --orange: #ffb54a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 15%, rgba(7, 153, 213, 0.09), transparent 28%),
    var(--paper);
  font-family: "DM Sans", sans-serif;
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header,
main,
footer {
  width: min(1440px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 136px;
  height: 55px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
}

.status-pill {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(23, 26, 29, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(7, 153, 213, 0.4);
  animation: pulse 2s infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(370px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  min-height: calc(100vh - 205px);
  padding: 55px 0 65px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(56px, 6.4vw, 106px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.headline-accent {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.headline-accent::after {
  position: absolute;
  right: -4px;
  bottom: -14px;
  left: 2px;
  height: 13px;
  content: "";
  opacity: 0.7;
  background: url("data:image/svg+xml,%3Csvg width='500' height='14' viewBox='0 0 500 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10C92 2 201 2 276 7C356 12 426 9 498 3' stroke='%230799D5' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform-origin: left;
  animation: draw-line 1.2s 0.4s both ease-out;
}

.intro {
  max-width: 520px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-label {
  color: #959a9d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.meta-value {
  font-size: 14px;
  font-weight: 700;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.build-zone {
  position: relative;
  isolation: isolate;
  height: min(680px, 68vh);
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 29, 0.13);
  border-radius: 4px;
  background: #e9eff0;
  box-shadow: 0 35px 80px rgba(36, 58, 65, 0.12);
}

.zone-header {
  position: absolute;
  z-index: 12;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(23, 26, 29, 0.1);
  color: rgba(23, 26, 29, 0.55);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sky-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(46, 75, 83, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 75, 83, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.sun-orb {
  position: absolute;
  z-index: -1;
  top: 15%;
  right: 12%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 0 70px rgba(255, 255, 255, 0.8);
}

.cloud {
  position: absolute;
  display: flex;
  align-items: flex-end;
  animation: cloud-drift 18s linear infinite;
}

.cloud i {
  display: block;
  height: 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.62);
}

.cloud i:nth-child(1) { width: 25px; }
.cloud i:nth-child(2) { width: 36px; height: 16px; }
.cloud i:nth-child(3) { width: 22px; }
.cloud-one { top: 115px; left: 11%; }
.cloud-two { top: 190px; right: 7%; transform: scale(0.7); animation-delay: -9s; }

.crane {
  position: absolute;
  z-index: 5;
  top: 84px;
  left: 10%;
  width: 72%;
  height: 390px;
}

.crane-mast {
  position: absolute;
  bottom: 0;
  left: 7%;
  width: 32px;
  height: 330px;
  border: 5px solid var(--ink);
  background: repeating-linear-gradient(135deg, transparent 0 18px, var(--ink) 19px 22px, transparent 23px 38px);
}

.crane-mast span {
  position: absolute;
  right: -5px;
  left: -5px;
  height: 4px;
  background: var(--ink);
}

.crane-mast span:nth-child(1) { top: 19%; }
.crane-mast span:nth-child(2) { top: 39%; }
.crane-mast span:nth-child(3) { top: 59%; }
.crane-mast span:nth-child(4) { top: 79%; }
.crane-mast span:nth-child(5) { top: 99%; }

.crane-top {
  position: absolute;
  top: 25px;
  left: 7%;
  width: 89%;
  height: 8px;
  background: var(--ink);
  transform-origin: 3% 50%;
  animation: crane-sway 7s ease-in-out infinite;
}

.crane-top::before {
  position: absolute;
  top: -26px;
  left: -2px;
  width: 0;
  height: 0;
  content: "";
  border-right: 70px solid transparent;
  border-bottom: 26px solid var(--ink);
}

.crane-counterweight {
  position: absolute;
  top: 20px;
  left: 0;
  width: 42px;
  height: 24px;
  background: var(--blue);
}

.crane-cable {
  position: absolute;
  top: 30px;
  right: 14%;
  width: 2px;
  height: 150px;
  background: var(--ink);
  transform-origin: top;
  animation: cable-lift 7s ease-in-out infinite;
}

.crane-hook {
  position: absolute;
  z-index: 8;
  top: 173px;
  right: calc(14% - 9px);
  width: 20px;
  height: 20px;
  border: 4px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  animation: hook-lift 7s ease-in-out infinite;
}

.building {
  position: absolute;
  z-index: 4;
  right: 10%;
  bottom: 105px;
  width: 48%;
  height: 330px;
  border-right: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
}

.building::before,
.building::after {
  position: absolute;
  bottom: -9px;
  width: 24px;
  height: 10px;
  content: "";
  background: var(--ink);
}

.building::before { left: -14px; }
.building::after { right: -14px; }

.building-glow {
  position: absolute;
  inset: 20% -20%;
  z-index: -1;
  opacity: 0.3;
  background: var(--blue);
  filter: blur(55px);
}

.floor {
  position: absolute;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--ink);
}

.floor span {
  position: absolute;
  bottom: 5px;
  width: 5px;
  background: var(--ink);
}

.floor span:nth-child(1) { left: 18%; height: 73px; }
.floor span:nth-child(2) { left: 50%; height: 73px; }
.floor span:nth-child(3) { right: 18%; height: 73px; }
.floor-1 { bottom: 76px; }
.floor-2 { bottom: 154px; }
.floor-3 { bottom: 232px; }

.building-sign {
  position: absolute;
  z-index: 6;
  top: -22px;
  left: 50%;
  width: 180px;
  height: 82px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 3px;
  background: white;
  box-shadow: 10px 10px 0 rgba(23, 26, 29, 0.12);
  transform: translateX(-50%);
  animation: sign-place 7s ease-in-out infinite;
}

.building-sign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worker {
  position: absolute;
  z-index: 10;
  bottom: 101px;
  width: 34px;
  height: 76px;
}

.worker-left {
  left: 19%;
  animation: worker-walk 7s ease-in-out infinite;
}

.worker-right {
  right: 9%;
  transform: scaleX(-1);
}

.worker-head {
  position: absolute;
  top: 0;
  left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #986849;
}

.worker-head i {
  position: absolute;
  top: -4px;
  left: -3px;
  width: 26px;
  height: 10px;
  border-radius: 12px 12px 2px 2px;
  background: var(--orange);
}

.worker-head i::after {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 13px;
  height: 4px;
  content: "";
  border-radius: 2px;
  background: var(--orange);
}

.worker-body {
  position: absolute;
  top: 20px;
  left: 5px;
  width: 25px;
  height: 31px;
  border-radius: 5px 5px 2px 2px;
  background: var(--blue);
  border-top: 6px solid var(--lime);
}

.worker-arm,
.worker-leg {
  position: absolute;
  width: 7px;
  border-radius: 5px;
  background: var(--ink);
  transform-origin: top center;
}

.worker-arm { top: 24px; height: 29px; }
.worker-arm.arm-left { left: 2px; transform: rotate(24deg); }
.worker-arm.arm-right { right: 1px; transform: rotate(-25deg); animation: hammer 0.8s ease-in-out infinite alternate; }
.worker-leg { top: 48px; height: 29px; }
.worker-leg.leg-left { left: 7px; transform: rotate(7deg); }
.worker-leg.leg-right { right: 5px; transform: rotate(-8deg); }

.worker-left .worker-leg.leg-left { animation: leg-left 0.65s ease-in-out infinite alternate; }
.worker-left .worker-leg.leg-right { animation: leg-right 0.65s ease-in-out infinite alternate; }

.spark {
  position: absolute;
  top: 43px;
  left: -13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: sparks 0.9s ease-out infinite;
}

.spark-2 { animation-delay: 0.3s; }
.spark-3 { animation-delay: 0.6s; }

.barrier {
  position: absolute;
  z-index: 8;
  bottom: 105px;
  left: 4%;
  display: flex;
  width: 110px;
  height: 27px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--orange);
  transform: rotate(-1deg);
}

.barrier span {
  width: 29px;
  height: 42px;
  flex: none;
  background: var(--ink);
  transform: rotate(35deg) translate(-7px, -8px);
  margin-right: 20px;
}

.barrier::before,
.barrier::after {
  position: absolute;
  top: 25px;
  width: 4px;
  height: 25px;
  content: "";
  background: var(--ink);
}

.barrier::before { left: 13px; }
.barrier::after { right: 13px; }

.ground {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 108px;
  border-top: 5px solid var(--ink);
  background: #d5dcda;
}

.ground-line {
  position: absolute;
  height: 2px;
  background: rgba(23, 26, 29, 0.14);
}

.line-one { top: 32px; left: 7%; width: 28%; }
.line-two { top: 65px; right: 9%; width: 38%; }

.progress-card {
  position: absolute;
  z-index: 14;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 19px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  color: white;
  background: rgba(23, 26, 29, 0.94);
  box-shadow: 0 18px 40px rgba(23, 26, 29, 0.25);
  backdrop-filter: blur(12px);
}

.progress-title {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-title strong {
  color: var(--lime);
}

.progress-track {
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-track span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-bright);
  box-shadow: 0 0 15px rgba(33, 184, 237, 0.7);
  transition: width 0.9s ease;
}

.terminal-line {
  display: flex;
  align-items: center;
  min-height: 18px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.57);
  font-family: monospace;
  font-size: 10px;
}

.terminal-prompt {
  margin-right: 7px;
  color: var(--lime);
}

.cursor {
  width: 5px;
  height: 11px;
  margin-left: 4px;
  background: var(--lime);
  animation: blink 0.8s steps(1) infinite;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 89px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

footer a span {
  display: inline-block;
  margin-left: 6px;
  color: var(--blue);
  transition: transform 0.2s ease;
}

footer a:hover span { transform: translate(3px, -3px); }

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(7, 153, 213, 0); }
  100% { box-shadow: 0 0 0 0 rgba(7, 153, 213, 0); }
}

@keyframes draw-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes cloud-drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(42px); } }
@keyframes crane-sway { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(0.8deg); } }

@keyframes cable-lift {
  0%, 12%, 100% { height: 150px; }
  42%, 65% { height: 93px; }
  78% { height: 120px; }
}

@keyframes hook-lift {
  0%, 12%, 100% { transform: translateY(0); }
  42%, 65% { transform: translateY(-57px); }
  78% { transform: translateY(-30px); }
}

@keyframes sign-place {
  0%, 12%, 100% { transform: translate(-50%, -38px) rotate(-2deg); }
  42%, 65% { transform: translate(-50%, -95px) rotate(1deg); }
  78%, 90% { transform: translate(-50%, 0) rotate(0); }
}

@keyframes worker-walk {
  0%, 10% { transform: translateX(-35px); }
  42%, 100% { transform: translateX(36px); }
}

@keyframes leg-left { to { transform: rotate(-25deg); } }
@keyframes leg-right { to { transform: rotate(25deg); } }
@keyframes hammer { to { transform: rotate(-75deg); } }

@keyframes sparks {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(-22px, -16px) scale(0); }
}

@media (max-width: 1100px) {
  .site-header,
  main,
  footer { width: min(100% - 48px, 850px); }

  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 70px;
  }

  .hero-copy { max-width: 700px; }
  .build-zone { height: 650px; }
}

@media (max-width: 650px) {
  .site-header,
  main,
  footer { width: calc(100% - 32px); }

  .site-header { height: 88px; }
  .brand { width: 105px; height: 45px; }
  .status-pill { padding: 9px 12px; font-size: 9px; }

  .hero {
    gap: 42px;
    min-height: auto;
    padding: 55px 0;
  }

  h1 { font-size: clamp(48px, 15vw, 72px); }
  .intro { margin-top: 34px; font-size: 16px; }
  .hero-meta { margin-top: 36px; gap: 19px; }
  .meta-value { font-size: 12px; }

  .build-zone {
    height: 510px;
    min-height: 0;
  }

  .zone-coordinates { display: none; }
  .crane { left: 1%; width: 96%; transform: scale(0.8); transform-origin: left bottom; }
  .building { right: 4%; bottom: 105px; width: 56%; height: 280px; }
  .floor-1 { bottom: 66px; }
  .floor-2 { bottom: 132px; }
  .floor-3 { bottom: 198px; }
  .floor span:nth-child(1),
  .floor span:nth-child(2),
  .floor span:nth-child(3) { height: 61px; }
  .building-sign { width: 140px; height: 66px; }
  .worker-left { left: 15%; }
  .worker-right { right: 2%; }
  .barrier { transform: scale(0.75); transform-origin: left bottom; }
  .progress-card { right: 12px; bottom: 12px; left: 12px; }

  footer {
    align-items: flex-start;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 8px;
    min-height: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ─────────────────────────────────────────────
   IVOTE / 2150 INTERFACE
   ───────────────────────────────────────────── */

:root {
  --ink: #f4f8f8;
  --muted: #88999f;
  --line: rgba(144, 239, 255, 0.16);
  --paper: #06090b;
  --blue: #32ddff;
  --blue-bright: #7eeeff;
  --lime: #c8ff63;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 38%, rgba(27, 202, 235, 0.1), transparent 24%),
    radial-gradient(circle at 12% 72%, rgba(84, 44, 255, 0.12), transparent 25%),
    #06090b;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(100, 226, 250, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 226, 250, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, transparent 92%);
  transform: perspective(600px) rotateX(54deg) scale(1.5) translateY(24%);
}

.future-atmosphere {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.13;
  filter: blur(90px);
  animation: aurora-shift 12s ease-in-out infinite alternate;
}

.aurora-one {
  top: -18%;
  left: 30%;
  width: 44vw;
  height: 44vw;
  background: #12dafa;
}

.aurora-two {
  right: -10%;
  bottom: -35%;
  width: 50vw;
  height: 50vw;
  background: #704dff;
  animation-delay: -6s;
}

.scanline {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  opacity: 0.3;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 16px var(--blue);
  animation: scan 8s linear infinite;
}

.future-year {
  position: absolute;
  right: -0.04em;
  bottom: -0.19em;
  color: transparent;
  font-family: "Manrope", sans-serif;
  font-size: clamp(210px, 31vw, 620px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(91, 218, 240, 0.055);
}

.noise { opacity: 0.055; mix-blend-mode: screen; }

.site-header {
  position: relative;
  height: 108px;
  border-color: var(--line);
}

.site-header::before,
.site-header::after {
  position: absolute;
  bottom: -2px;
  width: 5px;
  height: 3px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 9px var(--blue);
}

.site-header::before { left: 0; }
.site-header::after { right: 0; }

.brand {
  width: 127px;
  height: 54px;
  padding: 9px 11px;
  border: 1px solid rgba(126, 238, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.brand img { mix-blend-mode: multiply; }

.header-system {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 34px;
  color: #627277;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.status-pill {
  border-color: rgba(126, 238, 255, 0.18);
  border-radius: 2px;
  color: #b5c3c7;
  background: rgba(10, 20, 23, 0.6);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 400;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.hero {
  grid-template-columns: minmax(430px, 0.92fr) minmax(560px, 1.08fr);
  min-height: calc(100vh - 197px);
}

.hero-copy { padding-left: clamp(0px, 2.5vw, 36px); }

.future-index {
  display: flex;
  align-items: center;
  width: 190px;
  gap: 10px;
  margin-bottom: 42px;
  color: #536368;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.future-index i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.eyebrow {
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
}

.eyebrow span {
  width: auto;
  height: auto;
  color: var(--blue);
  background: none;
  font-size: 7px;
  text-shadow: 0 0 8px var(--blue);
  animation: pulse-text 1.2s steps(1) infinite;
}

h1 {
  max-width: 780px;
  font-size: clamp(60px, 6.6vw, 112px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-shadow: 0 0 45px rgba(228, 250, 255, 0.05);
}

.headline-accent {
  margin-top: 0.12em;
  color: transparent;
  background: linear-gradient(92deg, #f5fbfc 4%, #67e9ff 48%, #a895ff 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

.headline-accent::before {
  position: absolute;
  z-index: -1;
  top: 51%;
  left: -0.04em;
  overflow: hidden;
  width: 101%;
  height: 0.1em;
  content: attr(data-text);
  color: var(--blue);
  opacity: 0.32;
  filter: blur(1px);
  transform: translateX(8px);
}

.headline-accent::after {
  right: 0;
  bottom: -22px;
  left: 0;
  height: 1px;
  opacity: 0.65;
  background: linear-gradient(90deg, var(--blue), rgba(112, 77, 255, 0.4), transparent);
  box-shadow: 0 0 12px var(--blue);
}

.intro {
  max-width: 570px;
  color: #809197;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
}

.intro::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 5px 0;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

.hero-meta {
  width: max-content;
  max-width: 100%;
  margin-top: 42px;
  padding: 15px 18px;
  border: 1px solid rgba(126, 238, 255, 0.12);
  background: linear-gradient(90deg, rgba(20, 41, 46, 0.38), rgba(20, 41, 46, 0.06));
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
}

.meta-label {
  color: #526267;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 400;
}

.meta-value {
  color: #d7e3e5;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.mini-signal {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.meta-divider { height: 29px; background: rgba(126, 238, 255, 0.12); }

.orbit-seal {
  position: absolute;
  right: 1%;
  bottom: -2%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(126, 238, 255, 0.11);
  border-radius: 50%;
}

.orbit-seal::before,
.orbit-seal::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.orbit-seal::before { inset: 10px; border: 1px dashed rgba(126, 238, 255, 0.2); }
.orbit-seal::after { top: -3px; width: 5px; height: 5px; background: var(--blue); box-shadow: 0 0 9px var(--blue); }

.orbit-seal svg {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  overflow: visible;
  animation: orbit-spin 18s linear infinite;
}

.orbit-seal text {
  fill: #71868c;
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 1.2px;
}

.orbit-seal > span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 0 13px rgba(50, 221, 255, 0.6);
}

.build-zone {
  border-color: rgba(126, 238, 255, 0.23);
  background: #dbe8e9;
  box-shadow:
    0 0 0 1px rgba(50, 221, 255, 0.04),
    0 0 80px rgba(23, 215, 245, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.42);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.build-zone::before,
.build-zone::after {
  position: absolute;
  z-index: 20;
  width: 48px;
  height: 1px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 11px var(--blue);
}

.build-zone::before { top: 0; left: 28px; }
.build-zone::after { right: 28px; bottom: 0; }

.zone-header {
  color: rgba(7, 31, 36, 0.55);
  font-family: "DM Mono", monospace;
}

.progress-card { border-color: rgba(126, 238, 255, 0.2); background: rgba(5, 12, 15, 0.95); }
.progress-title, .terminal-line { font-family: "DM Mono", monospace; }

footer {
  border-color: var(--line);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-code { color: var(--blue); }
.footer-message { display: flex; align-items: center; gap: 8px; color: #4d5e63; }
.footer-message i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 7px var(--lime); }
footer a { color: #b8c8cc; font-weight: 400; }

@keyframes aurora-shift { to { transform: translate(12%, 8%) scale(1.15); } }
@keyframes scan { from { top: -5%; } to { top: 105%; } }
@keyframes pulse-text { 50% { opacity: 0.4; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-left: 0; }
  .orbit-seal { right: 2%; bottom: 0; }
}

@media (max-width: 650px) {
  .header-system { display: none; }
  .future-index { margin-bottom: 30px; }
  .hero-meta { gap: 13px; padding-inline: 13px; }
  .hero-meta .meta-divider:nth-of-type(4),
  .meta-launch { display: none; }
  .orbit-seal { display: none; }
  .footer-message { display: none; }
}

/* ─────────────────────────────────────────────
   IVOTE / NEXT-GEN MOTION LAYER
   ───────────────────────────────────────────── */

:root {
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

body {
  font-family: "Manrope", sans-serif;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 47%, rgba(68, 220, 248, 0.025) 48%, transparent 49%),
    radial-gradient(circle at 50% 120%, rgba(80, 63, 219, 0.15), transparent 42%);
}

::selection {
  color: #041014;
  background: var(--blue-bright);
}

.network-canvas {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.boot-screen {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 28px;
  color: #dffbff;
  background: #05090b;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot-screen::before,
.boot-screen::after {
  position: absolute;
  content: "";
}

.boot-screen::before {
  inset: 24px;
  border: 1px solid rgba(126, 238, 255, 0.1);
  clip-path: polygon(0 0, 70px 0, 70px 1px, 100% 1px, 100% 100%, calc(100% - 70px) 100%, calc(100% - 70px) calc(100% - 1px), 0 calc(100% - 1px));
}

.boot-screen::after {
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 22px var(--blue);
  animation: boot-scan 1.2s ease-in-out infinite;
}

.boot-screen.is-loaded {
  visibility: hidden;
  opacity: 0;
}

.boot-mark {
  color: transparent;
  background: linear-gradient(135deg, #fff, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.1em;
  text-align: center;
  filter: drop-shadow(0 0 18px rgba(50, 221, 255, 0.25));
}

.boot-copy {
  display: grid;
  width: 180px;
  gap: 10px;
  color: #5f7479;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-align: center;
}

.boot-copy i {
  height: 1px;
  overflow: hidden;
  background: rgba(126, 238, 255, 0.14);
}

.boot-copy b {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: boot-progress 1s ease-in-out infinite;
}

.cursor-aura {
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(50, 221, 255, 0.09), rgba(50, 221, 255, 0.018) 34%, transparent 67%);
  transform: translate(calc(var(--pointer-x) - 50%), calc(var(--pointer-y) - 50%));
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

.cursor-aura.is-visible { opacity: 1; }

.ambient-beam {
  position: absolute;
  width: 1px;
  height: 65vh;
  opacity: 0.16;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  filter: blur(0.5px);
  transform: rotate(37deg);
  animation: beam-travel 13s linear infinite;
}

.beam-one { top: -15%; left: 18%; }
.beam-two { right: 12%; bottom: -20%; animation-delay: -6s; }

.brand,
.primary-action {
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, background-color 0.25s ease;
}

.hero-copy > * {
  animation: content-reveal 0.9s both cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-copy > :nth-child(1) { animation-delay: 0.65s; }
.hero-copy > :nth-child(2) { animation-delay: 0.72s; }
.hero-copy > :nth-child(3) { animation-delay: 0.79s; }
.hero-copy > :nth-child(4) { animation-delay: 0.86s; }
.hero-copy > :nth-child(5) { animation-delay: 0.93s; }
.hero-copy > :nth-child(6) { animation-delay: 1s; }
.hero-copy > :nth-child(7) { animation-delay: 1.07s; }

h1 {
  text-wrap: balance;
}

.headline-accent {
  background-size: 200% 100%;
  animation: gradient-flow 5s ease-in-out infinite alternate;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-copy .intro {
  max-width: 470px;
}

.primary-action {
  position: relative;
  display: inline-flex;
  min-width: 218px;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  overflow: hidden;
  padding: 0 17px 0 21px;
  border: 1px solid rgba(126, 238, 255, 0.28);
  color: #eafcff;
  background: rgba(15, 34, 39, 0.66);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  backdrop-filter: blur(14px);
}

.primary-action::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 30%, rgba(90, 228, 255, 0.2), transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
}

.primary-action:hover {
  border-color: rgba(126, 238, 255, 0.7);
  background: rgba(20, 50, 57, 0.82);
  box-shadow: 0 0 28px rgba(50, 221, 255, 0.12);
}

.primary-action:hover::before { transform: translateX(110%); }

.primary-action i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #061013;
  background: var(--blue);
  font-size: 15px;
  font-style: normal;
  box-shadow: 0 0 16px rgba(50, 221, 255, 0.45);
}

.action-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #52656a;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.action-note i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: pulse-text 1.2s steps(1) infinite;
}

.build-zone {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: zone-reveal 1.1s 0.72s both cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.build-zone:hover {
  box-shadow:
    0 0 0 1px rgba(50, 221, 255, 0.08),
    0 0 110px rgba(23, 215, 245, 0.13),
    0 55px 120px rgba(0, 0, 0, 0.52);
}

.zone-light {
  --light-x: 50%;
  --light-y: 50%;
  position: absolute;
  z-index: 18;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--light-x) var(--light-y), rgba(255, 255, 255, 0.17), transparent 32%);
  mix-blend-mode: overlay;
}

.frame-corner {
  position: absolute;
  z-index: 24;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.corner-tl { top: 10px; left: 10px; border-top: 1px solid #2ee4ff; border-left: 1px solid #2ee4ff; }
.corner-tr { top: 10px; right: 10px; border-top: 1px solid #2ee4ff; border-right: 1px solid #2ee4ff; }
.corner-bl { bottom: 10px; left: 10px; border-bottom: 1px solid #2ee4ff; border-left: 1px solid #2ee4ff; }
.corner-br { right: 10px; bottom: 10px; border-right: 1px solid #2ee4ff; border-bottom: 1px solid #2ee4ff; }

.scene-readout {
  position: absolute;
  z-index: 13;
  top: 67px;
  left: 20px;
  display: grid;
  gap: 4px;
  color: rgba(7, 31, 36, 0.5);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.scene-readout strong {
  color: rgba(7, 31, 36, 0.8);
  font-size: 16px;
  font-weight: 500;
}

.scene-readout i {
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg, #078fb2 70%, rgba(7, 143, 178, 0.16) 70%);
  animation: readout-pulse 2.4s ease-in-out infinite;
}

.data-stack {
  position: absolute;
  z-index: 13;
  top: 70px;
  right: 18px;
  display: grid;
  width: 95px;
  border: 1px solid rgba(7, 31, 36, 0.13);
  background: rgba(228, 244, 245, 0.32);
  backdrop-filter: blur(7px);
}

.data-stack div {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(7, 31, 36, 0.08);
  color: rgba(7, 31, 36, 0.47);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.1em;
}

.data-stack div:last-child { border: 0; }
.data-stack b { color: rgba(7, 31, 36, 0.82); font-weight: 500; }

.holo-target {
  position: absolute;
  z-index: 2;
  top: 23%;
  right: 25%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(8, 145, 177, 0.18);
  border-radius: 50%;
  animation: target-float 7s ease-in-out infinite;
}

.holo-target::before,
.holo-target::after,
.holo-target i,
.holo-target span {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.holo-target::before { inset: 18px; border: 1px dashed rgba(8, 145, 177, 0.2); animation: orbit-spin 14s linear infinite; }
.holo-target::after { inset: 42px; border: 1px solid rgba(8, 145, 177, 0.16); }
.holo-target i:nth-child(1) { top: 50%; right: -8px; left: -8px; height: 1px; background: rgba(8, 145, 177, 0.16); border-radius: 0; }
.holo-target i:nth-child(2) { top: -8px; bottom: -8px; left: 50%; width: 1px; background: rgba(8, 145, 177, 0.16); border-radius: 0; }
.holo-target i:nth-child(3) { inset: 72px; background: rgba(8, 145, 177, 0.16); box-shadow: 0 0 24px rgba(8, 145, 177, 0.4); }
.holo-target span { top: 13px; left: 50%; width: 5px; height: 5px; background: #058dad; box-shadow: 0 0 8px #058dad; animation: orbit-dot 8s linear infinite; transform-origin: 0 77px; }

.data-particles i {
  position: absolute;
  z-index: 3;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #1aa7c4;
  box-shadow: 0 0 8px rgba(26, 167, 196, 0.7);
  animation: data-rise 6s linear infinite;
}

.data-particles i:nth-child(1) { left: 12%; bottom: 18%; animation-delay: -1s; }
.data-particles i:nth-child(2) { left: 32%; bottom: 26%; animation-delay: -4.2s; }
.data-particles i:nth-child(3) { left: 47%; bottom: 16%; animation-delay: -2.3s; }
.data-particles i:nth-child(4) { right: 13%; bottom: 22%; animation-delay: -5s; }
.data-particles i:nth-child(5) { right: 34%; bottom: 34%; animation-delay: -0.5s; }
.data-particles i:nth-child(6) { left: 21%; bottom: 40%; animation-delay: -3.4s; }
.data-particles i:nth-child(7) { right: 9%; bottom: 48%; animation-delay: -1.8s; }
.data-particles i:nth-child(8) { left: 59%; bottom: 49%; animation-delay: -4.8s; }

.sky-grid {
  background-size: 38px 38px;
  animation: grid-shift 12s linear infinite;
}

.building-glow {
  animation: structure-glow 4s ease-in-out infinite;
}

.progress-card {
  right: 26px;
  bottom: 26px;
  left: 26px;
  overflow: hidden;
  padding: 19px 20px 17px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.progress-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.zone-caption {
  position: absolute;
  z-index: 12;
  right: 27px;
  bottom: 128px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(7, 31, 36, 0.35);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.12em;
}

.zone-caption i { width: 20px; height: 1px; background: rgba(7, 31, 36, 0.22); }

@keyframes boot-scan { from { transform: translateY(0); } to { transform: translateY(100vh); } }
@keyframes boot-progress { 0% { transform: translateX(-105%); } 100% { transform: translateX(350%); } }
@keyframes beam-travel { from { transform: translateX(-25vw) rotate(37deg); } to { transform: translateX(75vw) rotate(37deg); } }
@keyframes content-reveal { from { opacity: 0; transform: translateY(24px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes zone-reveal { from { opacity: 0; transform: perspective(1200px) translateY(35px) rotateY(-5deg) scale(0.97); filter: blur(8px); } to { opacity: 1; transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); filter: blur(0); } }
@keyframes zone-reveal-flat { from { opacity: 0; transform: translateY(35px) scale(0.97); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes gradient-flow { to { background-position: 100% 50%; } }
@keyframes readout-pulse { 50% { opacity: 0.45; transform: scaleX(0.72); transform-origin: left; } }
@keyframes target-float { 50% { transform: translateY(-13px) rotate(3deg); } }
@keyframes orbit-dot { to { transform: rotate(360deg); } }
@keyframes data-rise { 0% { opacity: 0; transform: translate(0, 20px); } 15% { opacity: 0.7; } 100% { opacity: 0; transform: translate(25px, -220px); } }
@keyframes grid-shift { to { background-position: 38px 38px; } }
@keyframes structure-glow { 50% { opacity: 0.48; filter: blur(65px); } }

@media (max-width: 1100px) {
  .hero-actions { margin-top: 32px; }
  .orbit-seal { bottom: 5%; }
  .build-zone { transform: none; animation-name: zone-reveal-flat; }
}

@media (max-width: 650px) {
  .boot-screen::before { inset: 12px; }
  .cursor-aura { display: none; }
  .site-header { height: 82px; }
  .hero { padding-top: 46px; }
  h1 { line-height: 0.92; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .primary-action { width: 100%; }
  .hero-meta { width: 100%; }
  .build-zone { animation-delay: 0.3s; }
  .scene-readout { top: 60px; left: 14px; }
  .data-stack { top: 60px; right: 14px; }
  .holo-target { top: 25%; right: 8%; transform: scale(0.72); }
  .progress-card { right: 12px; bottom: 12px; left: 12px; }
  .zone-caption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .boot-screen { display: none; }
  .network-canvas,
  .cursor-aura { display: none; }
  .build-zone { transform: none !important; }
}

/* One-screen layout */

html,
body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
}

body {
  display: grid;
  grid-template-rows: 88px minmax(0, 1fr) 58px;
  min-height: 100vh;
  min-height: 100dvh;
}

.site-header,
main,
footer {
  width: min(1440px, calc(100% - 64px));
}

.site-header {
  height: 88px;
}

main {
  min-height: 0;
}

.hero {
  height: 100%;
  min-height: 0;
  gap: clamp(36px, 5vw, 86px);
  padding: 24px 0;
}

.future-index,
.header-system,
.footer-message {
  display: none;
}

.eyebrow {
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(52px, 6.1vw, 96px);
}

.intro {
  margin-top: 30px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 26px;
}

.orbit-seal {
  right: 0;
  bottom: 0;
  width: 94px;
  height: 94px;
}

.build-zone {
  width: 100%;
  height: min(640px, calc(100dvh - 194px));
  min-height: 0;
}

footer {
  min-height: 58px;
}

@media (max-height: 760px) and (min-width: 1101px) {
  body { grid-template-rows: 74px minmax(0, 1fr) 48px; }
  .site-header { height: 74px; }
  .hero { padding: 16px 0; }
  .eyebrow { margin-bottom: 13px; }
  h1 { font-size: clamp(48px, 5.6vw, 78px); }
  .intro { margin-top: 22px; }
  .hero-actions { margin-top: 20px; }
  .primary-action { min-height: 48px; }
  .build-zone { height: calc(100dvh - 154px); }
  footer { min-height: 48px; }
}

@media (max-width: 1100px) {
  body { grid-template-rows: 72px minmax(0, 1fr) 46px; }

  .site-header,
  main,
  footer {
    width: min(100% - 40px, 820px);
  }

  .site-header { height: 72px; }

  .hero {
    grid-template-rows: auto minmax(0, 1fr);
    gap: 20px;
    padding: 20px 0 14px;
  }

  .hero-copy { max-width: 100%; }
  .eyebrow { margin-bottom: 10px; }
  h1 { max-width: 760px; font-size: clamp(43px, 7vw, 68px); line-height: 0.92; }
  .intro { max-width: 560px; margin-top: 16px; font-size: 14px; line-height: 1.5; }
  .intro::before { width: 18px; margin-right: 8px; }
  .hero-actions { margin-top: 16px; }
  .primary-action { min-height: 44px; }
  .orbit-seal { display: none; }
  .build-zone { height: 100%; min-height: 0; }
  footer { min-height: 46px; }
}

@media (max-width: 650px) {
  body { grid-template-rows: 64px minmax(0, 1fr) 42px; }

  .site-header,
  main,
  footer {
    width: calc(100% - 28px);
  }

  .site-header { height: 64px; }
  .brand { width: 92px; height: 39px; padding: 6px 8px; }
  .status-pill { padding: 7px 9px; }

  .hero {
    gap: 14px;
    padding: 15px 0 10px;
  }

  .eyebrow { margin-bottom: 8px; font-size: 8px; }
  h1 { font-size: clamp(38px, 12vw, 54px); }
  .headline-accent::after { bottom: -10px; }
  .intro { margin-top: 14px; font-size: 12px; }
  .hero-actions { margin-top: 13px; }
  .primary-action { width: auto; min-width: 170px; min-height: 40px; }
  .action-note { display: none; }
  .build-zone { height: 100%; min-height: 190px; }
  .zone-header { padding: 12px 14px; }
  .scene-readout { top: 46px; }
  .data-stack { top: 46px; }
  .crane { top: 38px; }
  .progress-card { padding: 12px 14px 10px; }
  .progress-track { margin-top: 8px; }
  .terminal-line { margin-top: 7px; }
  footer { min-height: 42px; }
}

@media (max-height: 680px) and (max-width: 650px) and (orientation: landscape) {
  body { grid-template-rows: 56px minmax(0, 1fr) 34px; }
  .site-header { height: 56px; }
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(210px, 1.1fr); grid-template-rows: 1fr; align-items: center; gap: 14px; padding: 10px 0; }
  .eyebrow { display: none; }
  h1 { font-size: clamp(31px, 7vw, 43px); }
  .intro { margin-top: 12px; font-size: 11px; }
  .intro::before { display: none; }
  .hero-actions { margin-top: 11px; }
  .primary-action { min-width: 140px; min-height: 36px; padding-inline: 14px 10px; }
  .primary-action i { width: 23px; height: 23px; }
  .build-zone { min-height: 0; }
  footer { min-height: 34px; font-size: 7px; }
}

/* Light theme */

:root {
  --ink: #10191c;
  --muted: #64757a;
  --line: rgba(19, 64, 74, 0.13);
  --paper: #eef6f7;
  --blue: #009dcc;
  --blue-bright: #21c6ec;
  --lime: #7fbd21;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 30%, rgba(48, 202, 230, 0.17), transparent 28%),
    radial-gradient(circle at 10% 85%, rgba(126, 104, 255, 0.1), transparent 29%),
    linear-gradient(135deg, #f8fbfb 0%, #edf6f7 48%, #f6f8fb 100%);
}

body::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(26, 112, 128, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 112, 128, 0.14) 1px, transparent 1px);
}

body::after {
  background:
    linear-gradient(110deg, transparent 0 47%, rgba(0, 157, 204, 0.04) 48%, transparent 49%),
    radial-gradient(circle at 50% 120%, rgba(118, 92, 235, 0.09), transparent 42%);
}

.boot-screen {
  color: #10262c;
  background: #eef6f7;
}

.boot-screen::before { border-color: rgba(0, 133, 171, 0.17); }
.boot-mark { background: linear-gradient(135deg, #10191c, #00a9d7); -webkit-background-clip: text; background-clip: text; }
.boot-copy { color: #71868b; }

.noise {
  opacity: 0.025;
  mix-blend-mode: multiply;
}

.aurora { opacity: 0.1; }
.aurora-one { background: #00c9ec; }
.aurora-two { background: #806cff; }

.future-year {
  -webkit-text-stroke-color: rgba(17, 78, 91, 0.055);
}

.site-header {
  border-color: var(--line);
}

.status-pill {
  border-color: rgba(0, 130, 164, 0.18);
  color: #40575d;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 30px rgba(31, 92, 105, 0.06);
}

.eyebrow { color: #008bb3; }
.eyebrow span { color: #00a5d1; }

h1 {
  color: #111a1d;
  text-shadow: none;
}

h1.long-headline {
  max-width: 720px;
  font-size: clamp(42px, 4.65vw, 74px);
  line-height: 0.94;
}

.headline-accent {
  background: linear-gradient(92deg, #172326 4%, #00a8d2 52%, #6759d8 96%);
  -webkit-background-clip: text;
  background-clip: text;
}

.headline-accent::before {
  color: #009dcc;
  opacity: 0.13;
}

.intro { color: #617277; }

.primary-action {
  border-color: #111d20;
  color: #f4fdff;
  background: #111d20;
  box-shadow: 0 12px 28px rgba(14, 46, 53, 0.14);
}

.primary-action:hover {
  border-color: #008eb8;
  background: #087f9e;
  box-shadow: 0 14px 35px rgba(0, 139, 179, 0.22);
}

.primary-action i {
  color: #071215;
  background: #61dcf3;
}

.orbit-seal {
  border-color: rgba(0, 123, 154, 0.15);
}

.orbit-seal::before { border-color: rgba(0, 123, 154, 0.24); }
.orbit-seal text { fill: #687c81; }

.build-zone {
  background: linear-gradient(145deg, #e9f5f6, #d9e9eb);
  box-shadow:
    0 0 0 1px rgba(0, 142, 180, 0.05),
    0 24px 65px rgba(37, 84, 94, 0.16);
}

.build-zone:hover {
  box-shadow:
    0 0 0 1px rgba(0, 153, 194, 0.1),
    0 30px 75px rgba(29, 97, 112, 0.2);
}

.progress-card {
  border-color: rgba(98, 224, 248, 0.25);
  background: rgba(12, 27, 31, 0.91);
  box-shadow: 0 18px 40px rgba(20, 58, 66, 0.2);
}

footer {
  border-color: var(--line);
  color: #6d7c80;
}

footer a { color: #25373b; }

/* Minimal SaaS construction concept */

:root {
  --ink: #071d26;
  --muted: #64777e;
  --line: rgba(7, 29, 38, 0.1);
}

body {
  background:
    radial-gradient(circle at 75% 30%, rgba(25, 190, 220, 0.14), transparent 35%),
    linear-gradient(135deg, #f8fbfc 0%, #eef8fa 100%);
}

body::before {
  opacity: 0.045;
  background-size: 96px 96px;
  transform: none;
  mask-image: radial-gradient(circle at 75% 45%, black, transparent 70%);
}

.noise { opacity: 0.018; }
.aurora { opacity: 0.055; filter: blur(130px); }
.cursor-aura { opacity: 0; }
.cursor-aura.is-visible { opacity: 0.48; }

.site-header {
  border-bottom: 0;
}

.site-header::before,
.site-header::after {
  display: none;
}

.brand {
  width: 108px;
  height: 44px;
  padding: 5px 7px;
  border: 0;
  background: transparent;
  clip-path: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pill {
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 83, 100, 0.1);
  border-radius: 999px;
  color: #53686e;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 20px rgba(24, 76, 87, 0.04);
  font-size: 8px;
  backdrop-filter: blur(12px);
  clip-path: none;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #15b886;
  box-shadow: 0 0 0 4px rgba(21, 184, 134, 0.09);
}

.header-contact {
  padding: 9px 15px;
  border-radius: 10px;
  color: #fff;
  background: #071d26;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-contact:hover {
  background: #0b8fad;
  transform: translateY(-2px);
}

.hero {
  grid-template-columns: minmax(380px, 0.88fr) minmax(540px, 1.12fr);
  gap: clamp(44px, 6vw, 88px);
}

.hero-copy {
  padding-left: clamp(0px, 1.5vw, 20px);
}

.eyebrow {
  margin-bottom: 17px;
  color: #108da8;
  letter-spacing: 0.15em;
}

h1 {
  max-width: 660px;
  color: #071d26;
  font-size: clamp(52px, 5.55vw, 88px);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 0.91;
  text-shadow: none;
}

.headline-accent {
  margin-top: 0.08em;
  background: linear-gradient(95deg, #069bbd 0%, #32c3df 55%, #7967e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.headline-accent::before,
.headline-accent::after {
  display: none;
}

.intro {
  max-width: 520px;
  margin-top: 25px;
  color: #5c7178;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
}

.intro::before { display: none; }

.intro span {
  display: block;
  color: #849398;
}

.hero-actions {
  gap: 11px;
  margin-top: 26px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.primary-action {
  min-width: 158px;
  gap: 25px;
  padding: 0 16px 0 19px;
  border: 0;
  color: #fff;
  background: linear-gradient(110deg, #071d26, #123b47);
  box-shadow: 0 12px 28px rgba(7, 29, 38, 0.16);
  clip-path: none;
}

.primary-action::before { display: none; }

.primary-action i {
  width: auto;
  height: auto;
  color: #77def2;
  background: none;
  box-shadow: none;
  font-size: 16px;
}

.primary-action:hover {
  background: linear-gradient(110deg, #087f9c, #19aeca);
  box-shadow: 0 16px 34px rgba(0, 137, 169, 0.22);
  transform: translateY(-3px);
}

.secondary-action {
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(7, 48, 58, 0.13);
  color: #29434a;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.secondary-action span { color: #0d93b0; }

.secondary-action:hover {
  border-color: rgba(0, 145, 177, 0.28);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 28px rgba(28, 86, 98, 0.08);
  transform: translateY(-3px);
}

.orbit-seal,
.scene-readout,
.data-stack,
.holo-target,
.data-particles,
.zone-caption,
.frame-corner,
.cloud,
.barrier {
  display: none;
}

.build-zone {
  --ink: #163943;
  overflow: hidden;
  border: 1px solid rgba(18, 91, 106, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.95), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(221, 239, 242, 0.84));
  box-shadow:
    0 28px 65px rgba(34, 90, 101, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  clip-path: none;
}

.build-zone::before,
.build-zone::after {
  display: none;
}

.build-zone:hover {
  box-shadow:
    0 34px 78px rgba(28, 99, 114, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.zone-header {
  top: 12px;
  right: 14px;
  left: 14px;
  padding: 10px 4px;
  border-bottom-color: rgba(12, 72, 84, 0.08);
  color: rgba(15, 65, 76, 0.46);
  font-size: 8px;
}

.zone-coordinates {
  padding: 5px 8px;
  border-radius: 999px;
  color: #1487a0;
  background: rgba(255, 255, 255, 0.65);
}

.sky-grid {
  opacity: 0.1;
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 66%);
}

.sun-orb {
  top: 14%;
  right: 11%;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 90px rgba(255, 255, 255, 0.95);
}

.crane {
  left: 8%;
  transform: scale(1.03);
  transform-origin: left bottom;
}

.building {
  right: 9%;
  width: 50%;
}

.ground {
  border-top-width: 3px;
  background: rgba(194, 216, 216, 0.72);
}

.progress-card {
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(7, 29, 38, 0.93);
  box-shadow: 0 18px 40px rgba(7, 29, 38, 0.22);
  clip-path: none;
}

.progress-card::before { display: none; }

.progress-title {
  align-items: center;
  font-size: 10px;
  text-transform: none;
}

.progress-title span {
  color: rgba(255, 255, 255, 0.68);
}

.progress-title strong {
  color: #7fe1f3;
  font-size: 10px;
  font-weight: 500;
}

.progress-track {
  height: 3px;
  margin-top: 10px;
}

.progress-track span {
  background: linear-gradient(90deg, #12accb, #76deef);
}

.task-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.task-list > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  white-space: nowrap;
}

.task-list i {
  display: grid;
  width: 14px;
  height: 14px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.task-list .task-done { color: rgba(255, 255, 255, 0.7); }
.task-list .task-done i { border-color: rgba(21, 184, 134, 0.3); color: #6ee0b9; background: rgba(21, 184, 134, 0.1); }
.task-list .task-active { color: #bceefa; }
.task-list .task-active i { border: 0; background: #44cae5; box-shadow: 0 0 0 4px rgba(68, 202, 229, 0.1); animation: pulse-text 1.4s infinite; }

.footer-code { color: #168aa4; }

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #53676c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #078eab; }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 17px;
  }

  .hero-copy { padding-left: 0; }
  h1 { font-size: clamp(42px, 6.8vw, 64px); }
  h1.long-headline { font-size: clamp(35px, 5.8vw, 54px); }
  .intro { margin-top: 13px; line-height: 1.5; }
  .hero-actions { margin-top: 15px; }
  .primary-action, .secondary-action { min-height: 42px; }
  .build-zone { height: 100%; min-height: 0; }
}

@media (max-width: 650px) {
  .brand { width: 88px; height: 38px; }
  .header-contact { display: none; }
  .status-pill { padding: 7px 10px; }
  .hero { gap: 12px; }
  .eyebrow { margin-bottom: 7px; }
  h1 { font-size: clamp(37px, 11vw, 50px); }
  h1.long-headline { font-size: clamp(31px, 8.6vw, 42px); }
  .intro { margin-top: 10px; font-size: 11px; }
  .intro span { display: none; }
  .hero-actions { gap: 7px; margin-top: 10px; }
  .primary-action, .secondary-action { min-height: 38px; font-size: 8px; }
  .primary-action { min-width: 130px; gap: 14px; padding-inline: 14px; }
  .secondary-action { padding-inline: 12px; }
  .build-zone { min-height: 190px; border-radius: 18px; }
  .zone-header { top: 6px; right: 10px; left: 10px; padding-top: 8px; }
  .crane { left: 2%; transform: scale(0.78); }
  .progress-card { right: 9px; bottom: 9px; left: 9px; padding: 11px 12px 10px; border-radius: 12px; }
  .task-list { gap: 5px; margin-top: 8px; }
  .task-list > span { font-size: 6px; }
  .task-list .task-pending { display: none; }
  .task-list { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 13px; }
}

@media (max-height: 680px) and (max-width: 650px) and (orientation: landscape) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(210px, 1.1fr);
    grid-template-rows: 1fr;
    gap: 14px;
  }

  .secondary-action { display: none; }
  .build-zone { min-height: 0; }
}

/* Animated blueprint board */

.blueprint-board {
  position: absolute;
  z-index: 14;
  bottom: 19px;
  left: 50%;
  display: grid;
  width: 220px;
  height: 78px;
  place-items: center;
  overflow: hidden;
  border: 4px solid rgba(18, 57, 67, 0.9);
  border-radius: 8px;
  background-color: rgba(220, 246, 250, 0.92);
  background-image:
    linear-gradient(rgba(10, 132, 157, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 132, 157, 0.1) 1px, transparent 1px);
  background-size: 14px 14px;
  box-shadow:
    0 15px 30px rgba(17, 58, 67, 0.17),
    inset 0 0 24px rgba(46, 194, 222, 0.09);
  transform: translateX(-50%) rotate(-1.5deg);
  animation: blueprint-float 4s ease-in-out infinite;
}

.blueprint-board img {
  width: 112px;
  height: 52px;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.86;
  filter: saturate(0.82) contrast(1.05);
}

.blueprint-board span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  filter: blur(2px);
  transform: skewX(-12deg);
  animation: blueprint-scan 3.8s ease-in-out infinite;
}

@keyframes blueprint-scan {
  0%, 18% { left: -28%; opacity: 0; }
  30% { opacity: 1; }
  72% { opacity: 1; }
  84%, 100% { left: 112%; opacity: 0; }
}

@keyframes blueprint-float {
  0%, 100% { transform: translateX(-50%) rotate(-1.5deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-0.7deg) translateY(-3px); }
}

@media (max-width: 650px) {
  .blueprint-board {
    bottom: 12px;
    width: 154px;
    height: 57px;
    border-width: 3px;
    border-radius: 6px;
  }

  .blueprint-board img { width: 82px; height: 39px; }
}
