:root {
  --graphite: #111315;
  --black: #080909;
  --warm-white: #f7f3eb;
  --paper: #fffaf0;
  --concrete: #d7d1c4;
  --concrete-dark: #79766d;
  --steel: #2e3a3f;
  --lime: #d7ff34;
  --lime-dark: #a6cc00;
  --blue: #6ca6b5;
  --line: rgba(17, 19, 21, 0.14);
  --line-light: rgba(247, 243, 235, 0.18);
  --shadow: 0 24px 70px rgba(8, 9, 9, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--graphite);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--graphite);
  color: var(--lime);
  border: 2px solid var(--graphite);
  font-size: 0.82rem;
  font-weight: 950;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--warm-white);
  border-color: var(--lime);
}

.btn-secondary {
  color: var(--warm-white);
  border-color: rgba(247, 243, 235, 0.42);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.section-dark {
  background: var(--graphite);
  color: var(--warm-white);
}

.section-light {
  background: var(--warm-white);
  color: var(--graphite);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(32px, 5vw, 76px);
  min-height: calc(88vh - 76px);
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 72px) 38px;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-light .eyebrow,
.section-kicker {
  color: #536500;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-subhead,
.hero-support {
  max-width: 680px;
  color: rgba(247, 243, 235, 0.82);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.45;
}

.hero-support {
  margin-top: 18px;
  color: rgba(247, 243, 235, 0.72);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 18px;
}

.credibility {
  color: rgba(247, 243, 235, 0.7);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 560px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.88) contrast(1.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.08), rgba(8, 9, 9, 0.48));
}

.hero-stat {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(260px, calc(100% - 44px));
  padding: 18px;
  background: var(--lime);
  color: var(--black);
  border-radius: 6px;
}

.hero-stat span {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 950;
  line-height: 1;
}

.hero-stat small {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.positioning,
.spaces,
.included,
.built-for,
.how-it-works,
.waitlist,
.faq,
.final-cta {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.copy-stack {
  color: #3b3d3d;
  font-size: 1.12rem;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 900px;
}

.section-heading p:not(.eyebrow) {
  color: #4d504e;
  font-size: 1.08rem;
  line-height: 1.55;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(247, 243, 235, 0.74);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.space-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 18px;
  justify-items: stretch;
  min-width: 0;
  min-height: 640px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(17, 19, 21, 0.06);
}

.space-card.featured {
  background: var(--graphite);
  color: var(--warm-white);
  border-color: var(--graphite);
}

.space-card-top {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.space-label {
  color: #62665f;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured .space-label {
  color: var(--lime);
}

.space-card strong {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(2.1rem, 2.55vw, 3rem);
  line-height: 0.96;
  white-space: nowrap;
}

.space-card p {
  margin: 0;
  color: #4a4c49;
  line-height: 1.5;
}

.featured p {
  color: rgba(247, 243, 235, 0.78);
}

.space-details {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 96px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.space-details li {
  position: relative;
  padding-left: 20px;
  color: #383b36;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.space-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  background: #536500;
  border-radius: 2px;
}

.featured .space-details li {
  color: rgba(247, 243, 235, 0.86);
}

.featured .space-details li::before {
  background: var(--lime);
}

.use-case {
  font-size: 0.96rem;
}

.price {
  min-width: 0;
  color: #4a4c49;
  font-weight: 900;
}

.featured .price {
  color: rgba(247, 243, 235, 0.75);
}

.price span {
  display: block;
  margin-top: 5px;
  color: var(--graphite);
  font-size: 1.55rem;
  font-weight: 950;
}

.featured .price span {
  color: var(--lime);
}

.btn-card {
  width: 100%;
  background: var(--graphite);
  color: var(--warm-white);
  border-color: var(--graphite);
}

.featured .btn-card {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.space-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  min-height: 205px;
  margin: 0;
  padding: 10px;
  background: #fefefe;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.featured .space-image {
  background: #fefefe;
  border-color: rgba(247, 243, 235, 0.28);
}

.space-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pricing-note {
  max-width: 860px;
  margin: 22px 0 0;
  color: #5f625b;
  font-weight: 750;
}

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

.operator-grid article,
.steps-grid article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.operator-grid h3,
.steps-grid h3 {
  font-size: 1.12rem;
}

.operator-grid p,
.steps-grid p {
  margin: 0;
  color: #4d504e;
  line-height: 1.55;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  background: var(--lime);
  color: var(--black);
  border-radius: 6px;
  font-weight: 950;
}

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

.amenity-card {
  display: grid;
  align-content: start;
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(247, 243, 235, 0.05);
}

.amenity-card:nth-child(2),
.amenity-card:nth-child(4) {
  background: rgba(215, 255, 52, 0.09);
  border-color: rgba(215, 255, 52, 0.34);
}

.line-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--lime);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 3px solid currentColor;
}

.lock::before { left: 7px; top: 14px; width: 20px; height: 16px; }
.lock::after { left: 11px; top: 2px; width: 12px; height: 16px; border-bottom: 0; border-radius: 12px 12px 0 0; }
.expand::before { inset: 4px; }
.expand::after { left: 12px; top: 12px; width: 10px; height: 10px; background: currentColor; border: 0; }
.clock::before { inset: 3px; border-radius: 50%; }
.clock::after { left: 16px; top: 9px; width: 8px; height: 10px; border-top: 0; border-right: 0; }
.desk-icon::before { left: 3px; top: 10px; width: 28px; height: 9px; }
.desk-icon::after { left: 8px; top: 21px; width: 18px; height: 8px; border-top: 0; }
.restroom::before { left: 6px; top: 4px; width: 7px; height: 26px; }
.restroom::after { right: 5px; top: 4px; width: 12px; height: 26px; border-radius: 12px 12px 4px 4px; }
.loading::before { left: 2px; top: 13px; width: 30px; height: 13px; }
.loading::after { left: 7px; top: 25px; width: 20px; height: 7px; border-radius: 10px; }
.shield::before { left: 6px; top: 2px; width: 22px; height: 28px; border-radius: 14px 14px 18px 18px; }
.shield::after { left: 15px; top: 10px; width: 5px; height: 12px; border-left: 0; border-top: 0; transform: rotate(45deg); }
.wifi::before { left: 4px; top: 9px; width: 26px; height: 18px; border-bottom: 0; border-radius: 26px 26px 0 0; }
.wifi::after { left: 14px; top: 24px; width: 6px; height: 6px; background: currentColor; border: 0; border-radius: 50%; }
.utility::before { left: 11px; top: 2px; width: 12px; height: 26px; transform: skew(-14deg); }
.utility::after { left: 8px; top: 13px; width: 18px; height: 0; border-bottom: 0; }
.growth::before { left: 5px; top: 18px; width: 24px; height: 10px; }
.growth::after { left: 17px; top: 4px; width: 10px; height: 22px; border-left: 0; border-bottom: 0; transform: rotate(-45deg); }

.camera::before { left: 4px; top: 10px; width: 25px; height: 17px; }
.camera::after { left: 13px; top: 14px; width: 8px; height: 8px; border-radius: 50%; }
.personnel::before { left: 11px; top: 3px; width: 12px; height: 12px; border-radius: 50%; }
.personnel::after { left: 6px; top: 18px; width: 22px; height: 12px; border-radius: 14px 14px 4px 4px; }
.pallet-jack::before { left: 3px; top: 20px; width: 27px; height: 7px; }
.pallet-jack::after { left: 8px; top: 7px; width: 4px; height: 20px; border-right: 0; transform: rotate(-20deg); }
.cart-icon::before { left: 4px; top: 10px; width: 24px; height: 14px; }
.cart-icon::after { left: 8px; top: 25px; width: 18px; height: 5px; border-radius: 10px; }
.disposal::before { left: 8px; top: 9px; width: 18px; height: 21px; }
.disposal::after { left: 5px; top: 4px; width: 24px; height: 5px; }
.pickup::before { left: 2px; top: 13px; width: 29px; height: 13px; }
.pickup::after { left: 21px; top: 7px; width: 9px; height: 9px; border-left: 0; border-bottom: 0; transform: rotate(45deg); }
.address::before { left: 6px; top: 5px; width: 22px; height: 25px; }
.address::after { left: 12px; top: 12px; width: 10px; height: 7px; border-bottom: 0; }
.package-icon::before { left: 5px; top: 7px; width: 24px; height: 22px; }
.package-icon::after { left: 16px; top: 7px; width: 0; height: 22px; }
.printer::before { left: 5px; top: 12px; width: 24px; height: 14px; }
.printer::after { left: 9px; top: 3px; width: 16px; height: 10px; }
.conference::before { left: 4px; top: 14px; width: 26px; height: 11px; border-radius: 14px; }
.conference::after { left: 9px; top: 5px; width: 16px; height: 8px; }

.amenity-card h3 {
  margin-bottom: 18px;
  color: var(--warm-white);
  font-size: 1.18rem;
}

.amenity-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.35;
}

.amenity-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 2px;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 108px;
}

.form-intro p:not(.eyebrow) {
  color: rgba(247, 243, 235, 0.78);
  font-size: 1.12rem;
  line-height: 1.6;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--warm-white);
  color: var(--graphite);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: #393b37;
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  background: #fffdf7;
  color: var(--graphite);
  border: 1px solid rgba(17, 19, 21, 0.2);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(215, 255, 52, 0.72);
  border-color: var(--graphite);
}

.checkbox-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.checkbox-row input {
  min-height: auto;
  margin-top: 3px;
}

.form-submit {
  min-height: 56px;
  width: 100%;
  white-space: normal;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  margin: 0;
  padding: 16px;
  background: #eaf7d5;
  border: 1px solid #9bc43c;
  border-radius: 6px;
  color: #253000;
  font-weight: 850;
  line-height: 1.45;
}

.form-error {
  margin: 0;
  padding: 16px;
  background: #fff1ed;
  border: 1px solid #d66d4f;
  border-radius: 6px;
  color: #5b1e0e;
  font-weight: 850;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 1080px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: #536500;
  font-size: 1.3rem;
  line-height: 0.9;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -4px 20px 20px;
  color: #4d504e;
  line-height: 1.55;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 980px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--black);
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--warm-white);
  font-weight: 950;
}

@media (max-width: 1120px) {
  .space-grid,
  .amenity-grid,
  .operator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-card {
    min-height: auto;
  }
}

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-content,
  .section-heading,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 380px;
  }

  .form-intro {
    position: static;
  }

  .operator-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    gap: 9px;
    font-size: 0.92rem;
  }

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

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

  .main-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.6rem, 17vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero,
  .positioning,
  .spaces,
  .included,
  .built-for,
  .how-it-works,
  .waitlist,
  .faq,
  .final-cta {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .space-grid,
  .operator-grid,
  .steps-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

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

  .amenity-card {
    min-height: auto;
    padding: 20px;
  }

  .space-image {
    min-height: 260px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }
}
