:root {
  color-scheme: light;
  --forest: #173c33;
  --forest-soft: #2f6f46;
  --lime: #d9f75b;
  --cream: #f7f6ef;
  --paper: #fffefa;
  --sage: #6c827b;
  --line: #d7e1dc;
  --orange: #b96f34;
  --danger: #a7453e;
  --shadow: 0 22px 60px rgba(23, 60, 51, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #20272a;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: clamp(0px, 3vw, 34px);
  color: var(--forest);
  background:
    radial-gradient(circle at 85% 16%, rgba(217, 247, 91, 0.1), transparent 24rem),
    #20272a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, 100%);
  min-height: calc(100vh - clamp(0px, 6vw, 68px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(0px, 2.5vw, 30px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.brand-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 22px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 239, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--forest);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: contain;

.contact-link {
  padding: 11px 17px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-weight: 680;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: white;
  background: var(--forest);
}

.view {
  min-height: min(690px, calc(100vh - 230px));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
  padding: clamp(60px, 10vw, 120px) clamp(28px, 7vw, 90px);
  background:
    linear-gradient(120deg, rgba(255, 254, 250, 0.96), rgba(247, 246, 239, 0.84)),
    var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(217, 247, 91, 0.32);
}

.hero-copy,
.solar-illustration {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.15rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--sage);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 30px 0;
  font-weight: 700;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(217, 247, 91, 0.24);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 25px;
  border-radius: 999px;
  color: white;
  background: var(--forest);
  box-shadow: 0 8px 20px rgba(23, 60, 51, 0.17);
  font-weight: 760;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #225247;
  transform: translateY(-1px);
}

.solar-illustration {
  min-height: 420px;
}

.sun {
  position: absolute;
  top: 18px;
  right: 10%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 28px rgba(217, 247, 91, 0.18);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(47, 111, 70, 0.17);
  border-radius: 50%;
}

.orbit-one {
  inset: 8% -4% 7% 2%;
  transform: rotate(-13deg);
}

.orbit-two {
  inset: 18% 5% 14% -3%;
  transform: rotate(18deg);
}

.panel {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  width: 285px;
  height: 190px;
  padding: 10px;
  border: 9px solid #102922;
  border-radius: 10px;
  background: #102922;
  box-shadow: 18px 28px 35px rgba(23, 60, 51, 0.25);
  transform: perspective(720px) rotateX(55deg) rotateZ(-7deg);
}

.panel span {
  border: 1px solid rgba(217, 247, 91, 0.17);
  background:
    linear-gradient(145deg, rgba(66, 126, 110, 0.46), transparent 65%),
    #193d36;
}

.panel-back {
  top: 74px;
  left: 10px;
  opacity: 0.86;
}

.panel-front {
  top: 152px;
  right: -8px;
}

.ground-shadow {
  position: absolute;
  right: 3%;
  bottom: 18px;
  width: 86%;
  height: 46px;
  border-radius: 50%;
  background: rgba(23, 60, 51, 0.13);
  filter: blur(14px);
}

.payment {
  display: grid;
  place-items: center;
  padding: 54px 24px 72px;
  background:
    radial-gradient(circle at 50% 22%, rgba(217, 247, 91, 0.2), transparent 21rem),
    var(--cream);
}

.payment-card {
  width: min(620px, 100%);
  padding: clamp(32px, 7vw, 66px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(23, 60, 51, 0.11);
  text-align: center;
}

.payment-card h1 {
  margin: 0 auto;
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.payment-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-size: 2.25rem;
  font-weight: 900;
}

.payment-icon.cancelled {
  color: white;
  background: var(--danger);
}

.payment-icon.unknown {
  color: var(--forest);
  background: #e9ede9;
}

.payment-message {
  margin: 24px auto 0;
  color: var(--sage);
  font-size: 1.13rem;
  line-height: 1.55;
}

.payment-detail {
  margin: 28px 0;
  padding: 18px;
  border-radius: 16px;
  color: var(--forest);
  background: #f1f5ed;
  line-height: 1.5;
}

.legal-footer {
  padding: 25px clamp(24px, 5vw, 64px) 30px;
  border-top: 1px solid var(--line);
  color: var(--sage);
  background: var(--paper);
  font-size: 0.79rem;
  line-height: 1.55;
  text-align: center;
}

.legal-footer p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  body {
    padding: 0;
  }

  .site-shell {
    min-height: 100vh;
    border-radius: 0;
  }

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

  .solar-illustration {
    min-height: 330px;
  }

  .panel {
    width: 255px;
    height: 170px;
  }

  .panel-back {
    left: 8%;
  }

  .panel-front {
    right: 6%;
  }
}

@media (max-width: 520px) {
  .brand-bar {
    min-height: 82px;
    padding: 18px 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .contact-link {
    padding: 9px 12px;
    font-size: 0.87rem;
  }

  .hero {
    padding: 58px 24px 74px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 4.75rem);
  }

  .solar-illustration {
    min-height: 265px;
    margin-top: 8px;
  }

  .sun {
    width: 84px;
    height: 84px;
  }

  .panel {
    width: 205px;
    height: 138px;
    gap: 3px;
    padding: 7px;
    border-width: 7px;
  }

  .panel-back {
    top: 55px;
    left: 1%;
  }

  .panel-front {
    top: 112px;
    right: 0;
  }

  .payment {
    padding: 38px 20px 55px;
  }

  .payment-card {
    padding: 38px 25px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
