:root {
  color-scheme: dark;
  --ink: #071016;
  --ink-2: #0c1820;
  --panel: rgba(12, 24, 32, 0.78);
  --panel-solid: #111f28;
  --line: rgba(255, 255, 255, 0.15);
  --muted: #a9bac4;
  --text: #f6fbff;
  --cyan: #48e4e0;
  --coral: #ff6d5d;
  --gold: #f4c85f;
  --clay: #c97952;
  --green: #7be28d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(7, 16, 22, 0.65), var(--ink) 520px),
    radial-gradient(circle at top left, rgba(72, 228, 224, 0.16), transparent 34rem),
    linear-gradient(135deg, #071016, #111823 45%, #171318);
  color: var(--text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

main {
  min-height: 70vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(1.25rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-is-open {
  background: rgba(7, 16, 22, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(72, 228, 224, 0.23);
}

.brand__copy {
  display: grid;
  gap: 0.05rem;
}

.brand__name,
h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

.brand__name {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  position: relative;
  padding: 0.65rem 0.78rem;
  border-radius: 6px;
  color: rgba(246, 251, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem max(1.25rem, calc((100vw - var(--max)) / 2)) 2rem;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background: url("/assets/images/generated/hero-oasis.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.94) 0%, rgba(7, 16, 22, 0.78) 36%, rgba(7, 16, 22, 0.18) 72%),
    linear-gradient(180deg, rgba(7, 16, 22, 0.2), rgba(7, 16, 22, 0.92));
}

.hero__content {
  width: min(44rem, 100%);
  padding-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: 4.2rem;
  line-height: 0.94;
}

.hero__lede {
  margin: 1.35rem 0 0;
  max-width: 40rem;
  color: rgba(246, 251, 255, 0.82);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--cyan), #7df5c3);
  color: #061014;
  box-shadow: 0 18px 46px rgba(72, 228, 224, 0.22);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero__status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(48rem, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__status span {
  display: grid;
  gap: 0.2rem;
  min-height: 5.25rem;
  padding: 1rem;
  background: rgba(8, 18, 24, 0.7);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero__status strong {
  color: var(--text);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section__header {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin-bottom: 2rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.section__header p,
.split-section p,
.story-copy p,
.spec-panel p,
.contact-card p,
.feature-card p,
.partner-grid p,
.signal-grid p,
.route-steps p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.partner-grid article,
.signal-grid article,
.contact-card,
.spec-panel,
.route-panel,
.metric-stack,
.media-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 24, 31, 0.72);
  box-shadow: var(--shadow);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card__body {
  padding: 1.25rem;
}

.feature-card__kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card p {
  margin-bottom: 0;
}

.route-section {
  width: 100%;
  max-width: none;
  padding: 3rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(72, 228, 224, 0.12), transparent 45%),
    linear-gradient(135deg, rgba(255, 109, 93, 0.16), rgba(244, 200, 95, 0.07));
}

.route-panel {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 1.5rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 21, 28, 0.84);
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.route-steps div {
  min-height: 11rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.route-steps span,
.partner-grid span,
.signal-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--cyan);
  font-weight: 800;
  text-decoration-color: rgba(72, 228, 224, 0.4);
  text-underline-offset: 0.28rem;
}

.subhero {
  min-height: 58svh;
  display: grid;
  align-content: end;
  padding: 8rem max(1.25rem, calc((100vw - var(--max)) / 2)) 4rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.94), rgba(7, 16, 22, 0.42)),
    url("/assets/images/generated/hero-oasis.jpg") center / cover no-repeat;
}

.subhero--charging {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.96), rgba(7, 16, 22, 0.32)),
    url("/assets/images/generated/charging-plaza.jpg") center / cover no-repeat;
}

.subhero--store {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.96), rgba(7, 16, 22, 0.36)),
    url("/assets/images/generated/store-arcade.jpg") center / cover no-repeat;
}

.subhero--stay {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.96), rgba(7, 16, 22, 0.34)),
    url("/assets/images/generated/tiny-homes.jpg") center / cover no-repeat;
}

.subhero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: 3.4rem;
  line-height: 0.98;
}

.subhero p:last-child {
  width: min(43rem, 100%);
  margin: 1.2rem 0 0;
  color: rgba(246, 251, 255, 0.82);
  font-size: 1.08rem;
}

.story-section,
.charging-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.story-copy,
.spec-panel,
.contact-card {
  padding: 1.5rem;
}

.metric-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.metric-stack div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.metric-stack strong {
  color: var(--coral);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.8rem;
}

.media-panel {
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.spec-panel {
  display: grid;
  align-content: center;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(246, 251, 255, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(72, 228, 224, 0.32);
}

.charging-layout--reverse .media-panel {
  order: 2;
}

.signal-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.signal-grid article,
.partner-grid article {
  padding: 1.25rem;
}

.amenity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
}

.amenity-strip span {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(246, 251, 255, 0.88);
  font-weight: 800;
}

.contact-card h2 {
  margin-top: 0;
  color: var(--gold);
  font-size: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(246, 251, 255, 0.86);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(5, 12, 16, 0.72);
  color: var(--text);
  font: inherit;
  padding: 0.88rem 0.95rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(72, 228, 224, 0.8);
  box-shadow: 0 0 0 3px rgba(72, 228, 224, 0.15);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #060c11;
  padding: 3rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(10rem, 0.4fr));
  gap: 2rem;
}

.footer-brand,
.footer-label {
  margin: 0 0 0.55rem;
  color: var(--text);
  font-weight: 900;
}

.site-footer p {
  color: var(--muted);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 0.4rem 0;
  color: rgba(246, 251, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 5.8rem;
  }

  .subhero h1 {
    font-size: 4.7rem;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 5.3rem 1rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 16, 22, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-0.75rem);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .feature-grid,
  .signal-grid,
  .partner-grid,
  .route-panel,
  .split-section,
  .story-section,
  .charging-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .charging-layout--reverse .media-panel {
    order: 0;
  }

  .media-panel img {
    min-height: 20rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .brand__mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand__tag {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .hero__content {
    padding-bottom: 1.4rem;
  }

  .hero__status,
  .route-steps {
    grid-template-columns: 1fr;
  }

  .hero__status span {
    min-height: auto;
  }

  .section {
    width: min(var(--max), calc(100% - 2rem));
    padding: 3.4rem 0;
  }

  .subhero {
    min-height: 52svh;
    padding-top: 7rem;
  }

  .subhero h1,
  h2 {
    font-size: 2.35rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .metric-stack div {
    grid-template-columns: 1fr;
  }
}

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