@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;600&family=Geist:wght@400;600;700&display=swap");

:root {
  --ink: #071510;
  --green: #80cf22;
  --paper: #f2fbf7;
  --line: rgba(7, 21, 16, 0.14);
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

button,
input {
  font: inherit;
}

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

.site-shell {
  min-height: 100svh;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 50% 100%, 50% 100%;
  background-position: top left, top left;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 24px clamp(28px, 7vw, 118px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: clamp(210px, 20vw, 294px);
}

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

.launch-date {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-date span,
.site-footer span {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 206px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 56px clamp(34px, 6.2vw, 104px) 64px clamp(88px, 9.2vw, 154px);
  border-right: 1px solid var(--line);
}

.copy-inner {
  width: min(100%, 710px);
}

.side-label {
  position: absolute;
  left: 28px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.side-label::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--green);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(72px, 8.2vw, 150px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.green-dot {
  color: var(--green);
}

.intro {
  max-width: 650px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.launch-note {
  margin: 22px 0 26px;
  font-size: 18px;
  font-weight: 700;
}

.waitlist {
  display: flex;
  width: min(100%, 650px);
  padding: 4px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(242, 251, 247, 0.86);
}

.waitlist:focus-within {
  outline: 3px solid rgba(128, 207, 34, 0.34);
  outline-offset: 3px;
}

.waitlist input {
  min-width: 0;
  flex: 1;
  padding: 15px 22px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.waitlist input::placeholder {
  color: rgba(7, 21, 16, 0.55);
}

.waitlist button {
  min-width: 168px;
  padding: 15px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 650;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.waitlist button:hover {
  background: var(--green);
  color: var(--ink);
  transform: translateX(-2px);
}

.form-note {
  margin: 8px 0 0 20px;
  color: rgba(7, 21, 16, 0.6);
  font-size: 12px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services li:not(:last-child)::after {
  content: "•";
  margin-left: 26px;
  color: var(--green);
}

.brand-art {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 1.4vw, 26px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 82px) clamp(36px, 5.5vw, 94px);
}

.shape {
  min-height: 240px;
  background: var(--green);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.08);
}

.shape-top {
  border-radius: 0 999px 999px 999px;
  animation: breathe-top 7s ease-in-out infinite;
}

.shape-bottom {
  border-radius: 999px 999px 0 999px;
  animation: breathe-bottom 7s ease-in-out infinite;
}

.art-index {
  position: absolute;
  right: 26px;
  bottom: 22px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.site-footer {
  min-height: 98px;
  border-bottom: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  border-bottom: 1px solid var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes breathe-top {
  0%, 100% { border-top-right-radius: 999px; transform: translateX(0); }
  50% { border-top-right-radius: 28px; transform: translateX(-8px); }
}

@keyframes breathe-bottom {
  0%, 100% { border-bottom-left-radius: 999px; transform: translateX(0); }
  50% { border-bottom-left-radius: 28px; transform: translateX(8px); }
}

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

@media (max-width: 900px) {
  .site-shell {
    background-size: 100% 100%, 100% 100%;
  }

  .site-header {
    min-height: 86px;
    padding: 20px 24px;
  }

  .brand {
    width: 204px;
  }

  .launch-date {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

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

  .hero-copy {
    min-height: auto;
    padding: 62px 24px 52px;
    border-right: 0;
  }

  .side-label {
    display: none;
  }

  h1 {
    font-size: clamp(66px, 20vw, 104px);
    line-height: 0.82;
  }

  .brand-art {
    min-height: 68svh;
    padding: 24px;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    width: 176px;
  }

  .launch-date span {
    display: none;
  }

  .launch-date {
    max-width: 82px;
    text-align: right;
  }

  .intro {
    margin-top: 30px;
    font-size: 18px;
  }

  .waitlist {
    display: grid;
    gap: 6px;
    padding: 6px;
    border-radius: 28px;
  }

  .waitlist input,
  .waitlist button {
    width: 100%;
  }

  .waitlist button {
    min-width: 0;
  }

  .services {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services li::after {
    display: none;
  }

  .brand-art {
    min-height: 520px;
  }

  .shape {
    min-height: 0;
  }
}
