:root {
  --ink: #000;
  --paper: #fff;
  --line: rgba(0, 0, 0, 0.16);
  --muted: rgba(0, 0, 0, 0.58);
  --pad: 20px;
  --hero-min: calc(100svh - 154px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
}

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

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

.site-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px var(--pad);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad) 26px;
}

.brand img {
  width: 250px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a,
.section-pill,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 32px;
  height: 4px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle::before {
  top: 15px;
}

.menu-toggle::after {
  top: 25px;
}

.site-header.is-menu-open .menu-toggle::before {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle::after {
  top: 20px;
  transform: rotate(-45deg);
}

nav a {
  min-width: 170px;
}

.mobile-action {
  display: none;
}

.site-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  grid-template-rows: minmax(var(--hero-min), auto) auto;
  column-gap: 16px;
  row-gap: 28px;
  padding: 0 var(--pad) 72px;
}

.orb-stage {
  position: relative;
  align-self: stretch;
  min-height: var(--hero-min);
  overflow: hidden;
  isolation: isolate;
}

.soon-orb {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 197px;
  border-radius: 0;
  transform: translate3d(var(--orb-x, 0), var(--orb-y, 0), 0);
  transform-origin: 76% 80%;
  will-change: transform;
}

.soon-orb img {
  width: 190px;
  height: 197px;
  object-fit: contain;
}

.soon-orb.is-bumping {
  animation: sticker-bump 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes sticker-bump {
  0% {
    transform: translate3d(var(--orb-x, 0), var(--orb-y, 0), 0) rotate(0deg) scale(1);
  }

  36% {
    transform: translate3d(var(--orb-x, 0), var(--orb-y, 0), 0) rotate(-4deg) scale(1.035);
  }

  70% {
    transform: translate3d(var(--orb-x, 0), var(--orb-y, 0), 0) rotate(2deg) scale(0.995);
  }

  100% {
    transform: translate3d(var(--orb-x, 0), var(--orb-y, 0), 0) rotate(0deg) scale(1);
  }
}

.statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  gap: 22px;
  min-height: var(--hero-min);
}

h1 {
  max-width: 1020px;
  margin: 0;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

@media (min-width: 1500px) {
  h1 {
    font-size: 4rem;
  }
}

.inquiry-panel {
  min-height: 450px;
  padding-top: 0;
  scroll-margin-top: 24px;
}

.section-pill {
  margin-bottom: 20px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-row.full,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 0, 0, 0.12);
}

.submit-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.submit-button:hover,
.submit-button:focus-visible,
nav a:hover,
nav a:focus-visible {
  background: #242424;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--pad);
  border-top: 1.5px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

  .statement {
    display: block;
    order: 1;
    min-height: 0;
  }

  .orb-stage {
    order: 2;
    height: 360px;
    min-height: 0;
  }

  .inquiry-panel {
    order: 3;
  }

  h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: 4rem;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 16px;
  }

  .site-header {
    position: relative;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .brand img {
    width: min(220px, calc(100vw - 96px));
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  nav {
    position: absolute;
    top: calc(100% - 4px);
    right: var(--pad);
    z-index: 10;
    align-items: stretch;
    flex-direction: column;
    width: min(180px, calc(100vw - (var(--pad) * 2)));
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  nav a {
    flex: none;
    min-width: 0;
    min-height: 38px;
    padding: 0 18px;
    font-size: 0.72rem;
  }

  .mobile-action {
    display: inline-flex;
  }

  .site-grid {
    row-gap: 24px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .orb-stage {
    height: clamp(330px, 48svh, 430px);
    min-height: 0;
  }

  .soon-orb {
    width: 138px;
    height: 143px;
  }

  .soon-orb img {
    width: 138px;
    height: 143px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .section-pill,
  .submit-button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
