:root {
  --bg: #f4efe6;
  --surface: rgba(255, 251, 245, 0.72);
  --surface-dark: #10231d;
  --text: #122019;
  --muted: #57655d;
  --line: rgba(16, 35, 29, 0.12);
  --accent: #1d7a53;
  --accent-strong: #0f5d3c;
  --warning: #eb8a3b;
  --shadow: 0 24px 80px rgba(18, 32, 25, 0.12);
  --radius-lg: 32px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 235, 207, 0.9), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(235, 138, 59, 0.22), transparent 20%),
    linear-gradient(180deg, #eef6ed 0%, var(--bg) 45%, #f7f0e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 32, 25, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 25, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 75%);
  pointer-events: none;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.site-header,
.site-footer,
.hero,
.section,
.interest-panel {
  backdrop-filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.7);
  box-shadow: 0 10px 30px rgba(18, 32, 25, 0.06);
  position: sticky;
  top: 18px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(184, 235, 207, 0.7)),
    var(--surface-dark);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--surface-dark);
}

.brand-mark::before {
  width: 18px;
  height: 4px;
  top: 13px;
  left: 12px;
}

.brand-mark::after {
  width: 20px;
  height: 14px;
  left: 11px;
  bottom: 10px;
  border: 2px solid var(--surface-dark);
  background: transparent;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  margin-top: 28px;
  padding: 54px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 29, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.88), rgba(239, 250, 238, 0.8)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  max-width: 11ch;
}

.lead {
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
  color: var(--muted);
}

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

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #f8fff8;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 30px rgba(15, 93, 60, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(16, 35, 29, 0.08);
}

.button-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 35, 29, 0.07);
}

.hero-stats dt {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-stats dd {
  margin: 10px 0 0;
  font-weight: 700;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-scene {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
}

.signal-ring {
  position: absolute;
  border-radius: 50%;
  inset: 10%;
  border: 1px solid rgba(29, 122, 83, 0.2);
  animation: pulse 6s ease-in-out infinite;
}

.signal-ring-two {
  inset: 2%;
  animation-delay: 1.5s;
}

.box-device {
  position: absolute;
  inset: 14% 20%;
  padding: 22px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(26, 57, 47, 0.96), rgba(10, 24, 20, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 40px 90px rgba(16, 35, 29, 0.28);
  transform: rotate(-6deg);
}

.box-device::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -20px;
  height: 44px;
  background: linear-gradient(180deg, rgba(16, 35, 29, 0.45), transparent);
  filter: blur(14px);
}

.box-screen {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(183, 246, 212, 0.95), rgba(110, 214, 159, 0.85));
  color: #123120;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: inset 0 0 0 1px rgba(16, 35, 29, 0.1);
}

.box-screen span {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.box-screen strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.box-door {
  position: absolute;
  inset: 128px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.box-tag {
  position: absolute;
  right: -18px;
  top: 52%;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--warning);
  color: #38200b;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(235, 138, 59, 0.3);
}

.status-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(16, 35, 29, 0.08);
  box-shadow: 0 20px 40px rgba(16, 35, 29, 0.12);
  max-width: 220px;
}

.status-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.status-card strong {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  font-size: 1.05rem;
}

.status-card-top {
  top: 4%;
  right: -4%;
}

.status-card-bottom {
  bottom: 8%;
  left: -2%;
}

.section {
  margin-top: 24px;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 29, 0.08);
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 16px 50px rgba(16, 35, 29, 0.06);
}

.section-heading {
  max-width: 820px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.story-grid,
.feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.story-grid article,
.feature-card,
.roadmap-panel,
.interest-panel,
.interest-form {
  border: 1px solid rgba(16, 35, 29, 0.08);
}

.story-grid article,
.feature-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.story-grid h3,
.feature-card h3,
.roadmap-panel h3,
.interest-copy h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.story-grid p,
.feature-card p,
.interest-copy p,
.check-list li,
label,
.form-status,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card-accent {
  background: linear-gradient(180deg, rgba(184, 235, 207, 0.62), rgba(255, 255, 255, 0.82));
}

.feature-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 35, 29, 0.06);
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.roadmap-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 35, 29, 0.96), rgba(18, 67, 48, 0.95)),
    var(--surface-dark);
  color: #f4fbf4;
}

.roadmap-panel h3,
.roadmap-panel .check-list li {
  color: inherit;
}

.check-list {
  padding-left: 18px;
  margin: 0;
}

.check-list li + li {
  margin-top: 10px;
}

.interest-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.92), rgba(232, 246, 236, 0.88)),
    rgba(255, 255, 255, 0.84);
}

.interest-copy {
  padding: 10px 6px 10px 4px;
}

.interest-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 35, 29, 0.08);
}

.interest-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(16, 35, 29, 0.08);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 29, 0.12);
  background: rgba(255, 251, 245, 0.96);
  font: inherit;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(29, 122, 83, 0.28);
  border-color: rgba(29, 122, 83, 0.55);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.trap-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 2px 0 0;
  min-height: 28px;
  font-weight: 600;
}

.form-status.is-error {
  color: #9d3f23;
}

.form-status.is-success {
  color: var(--accent-strong);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 24px;
  border: 1px solid rgba(16, 35, 29, 0.08);
  background: rgba(255, 250, 242, 0.7);
}

.site-footer p {
  margin: 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero,
  .interest-panel,
  .story-grid,
  .feature-grid,
  .roadmap-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .site-header {
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .section,
  .interest-panel {
    padding: 24px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .hero-visual {
    min-height: 340px;
  }

  .box-device {
    inset: 16% 12%;
  }

  .status-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .box-scene {
    display: flex;
    flex-direction: column;
    gap: 14px;
    aspect-ratio: auto;
  }

  .site-footer {
    padding: 20px;
  }
}
