:root {
  --ink: #f7f7fb;
  --muted: #b8b5c7;
  --black: #030306;
  --panel: #111119;
  --panel-2: #181724;
  --line: rgba(255, 255, 255, 0.13);
  --purple: #8057ff;
  --violet: #b66cff;
  --cyan: #5de4ff;
  --acid: #c9ff5a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 6, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(180px, 19vw, 270px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta {
  color: var(--white);
  background: rgba(128, 87, 255, 0.22);
  border-color: rgba(128, 87, 255, 0.65);
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 6vw, 78px) 38px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 35%, rgba(128, 87, 255, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(3, 3, 6, 0.9), rgba(3, 3, 6, 0.52) 52%, rgba(3, 3, 6, 0.18)),
    linear-gradient(0deg, rgba(3, 3, 6, 0.94), rgba(3, 3, 6, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding-bottom: clamp(82px, 13vh, 150px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--violet);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(4.4rem, 13vw, 10.4rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy,
.lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.56;
}

.hero-copy {
  margin-bottom: 30px;
}

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

.button.primary {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 6vw, 78px);
  bottom: 26px;
  left: clamp(18px, 6vw, 78px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts div {
  min-height: 86px;
  padding: 18px 22px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 950;
}

.hero-facts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(24px, 7vw, 90px);
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  color: var(--acid);
  font-weight: 950;
  text-transform: uppercase;
}

.intro-copy p,
.text-panel p,
.contact-copy p,
.component-list p,
.metric-card p,
.feature p,
.footer p,
figcaption {
  color: var(--muted);
  line-height: 1.65;
}

.intro-copy p,
.text-panel p,
.contact-copy p {
  max-width: 720px;
  font-size: 1.08rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--panel);
  color: var(--white);
}

.feature {
  min-height: 342px;
  padding: clamp(34px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  display: block;
  margin-bottom: 88px;
  color: var(--purple);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(128, 87, 255, 0.14), transparent 38%),
    var(--black);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  min-height: 226px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--acid);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 950;
}

.image-text {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, 0.75fr);
  min-height: 590px;
  background: var(--panel);
}

.parcel-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(360px, 1.42fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 78px);
  background: #f4f4f0;
  color: #111119;
}

.parcel-copy p {
  max-width: 690px;
  color: #4e4d58;
  font-size: 1.02rem;
  line-height: 1.7;
}

.parcel-image {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 25, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.parcel-image img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  object-position: 42% 58%;
}

.site-details {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.site-details div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 25, 0.16);
}

.site-details dt {
  color: #6f43e7;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-details dd {
  margin: 0;
  color: #22212d;
  font-weight: 800;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.text-panel {
  align-self: center;
  padding: clamp(38px, 6vw, 78px);
}

.plan-list {
  background: var(--black);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 44px;
}

.component-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.component-list article {
  min-height: 215px;
  padding: 26px 24px 0 0;
  border-right: 1px solid var(--line);
}

.component-list article:last-child {
  border-right: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-item {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(3, 3, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 7vw, 100px);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 78px);
  background:
    radial-gradient(circle at 15% 20%, rgba(93, 228, 255, 0.14), transparent 28%),
    radial-gradient(circle at 78% 34%, rgba(128, 87, 255, 0.18), transparent 30%),
    var(--panel-2);
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #0b0b12;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 78px);
  background: var(--black);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .split,
  .parcel-section,
  .image-text,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .component-list {
    grid-template-columns: 1fr;
  }

  .feature,
  .component-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .image-panel img {
    min-height: 390px;
  }

  .parcel-image img {
    aspect-ratio: 1.15;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 156px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 96vh;
    padding: 118px 16px 26px;
  }

  .hero-content {
    padding-bottom: 184px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 58px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .metric-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 340px;
  }

  .section,
  .parcel-section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer {
    display: grid;
  }

  .site-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
