@font-face {
  font-family: "RiccioneSerialXlight";
  src:
    url("webFonts/RiccioneSerialXlight/font.woff2") format("woff2"),
    url("webFonts/RiccioneSerialXlight/font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FoundersGroteskMono";
  src: url("webFonts/founders-grotesk-mono-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --breeze: #385599;
  --lilac: #ebe5f5;
  --milk: #fdf8f0;
  --black-cat: #0f0f0f;
  --sky: #dcf7f8;
  --lime: #e7ffb2;
  --orchid: #5c408c;
  --grass: #53562a;
  --nav-height: 4.5rem;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--black-cat);
  background: var(--milk);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "RiccioneSerialXlight", serif;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.highlight,
.monospace {
  font-family: "FoundersGroteskMono", monospace;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--milk);
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img {
  height: 2.9rem;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black-cat);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--lilac);
  color: var(--breeze);
}

.nav-link[aria-current="page"] {
  color: var(--breeze);
}

/* Products dropdown */

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 17rem;
  background: var(--milk);
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-radius: 0.875rem;
  box-shadow: 0 12px 32px rgba(15, 15, 15, 0.12);
  padding: 0.5rem;
  list-style: none;
  display: grid;
  gap: 0.125rem;
}

.nav-menu-panel[hidden] {
  display: none;
}

.nav-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--black-cat);
  text-decoration: none;
  font-size: 0.9375rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-menu-item:hover,
.nav-menu-item:focus-visible {
  background: var(--lilac);
  color: var(--breeze);
}

.nav-chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}

.nav-menu-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
}

/* ---------- Status tag ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: var(--lilac);
  color: var(--orchid);
}

.tag-available {
  background: var(--lime);
  color: var(--grass);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

/* The icon sits before the label, so the label alone reads as pushed right.
   A spacer of the same width after it centres the label in the button. */
.btn:has(svg)::after,
.upcoming-cta:has(svg)::after {
  content: "";
  flex: none;
  width: var(--btn-icon, 18px);
}

.btn-lime {
  background: var(--lime);
  color: var(--black-cat);
}

.btn-lime:hover {
  background: var(--breeze);
  color: white;
}

.btn-dark {
  background: var(--black-cat);
  color: var(--milk);
}

.btn-dark:hover {
  background: var(--breeze);
}

.btn-outline {
  background: transparent;
  color: var(--breeze);
  border-color: var(--breeze);
}

.btn-outline:hover {
  background: var(--breeze);
  color: white;
}

/* ---------- Hero (home) ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--milk);
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
}

.hero-video {
  position: absolute;
  top: -5%;
  left: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  z-index: 1;
  /* The clip is dark straight out of the camera (mean luminance ~110), and
     lifting it also buys contrast for the wordmark sitting on top. */
  filter: brightness(1.2) saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: -8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.85;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-logo {
  height: 10rem;
  display: block;
  margin: 0 auto 0.5rem;
}

.hero-tagline {
  color: var(--breeze);
  font-family: "FoundersGroteskMono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 2.5rem;
  display: block;
  margin-top: 0.5rem;
  text-align: center;
}

.scroll-arrow {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  color: var(--breeze);
  animation: bounce 2s infinite;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 3;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 6rem 0;
}

.section-breeze {
  background: var(--breeze);
  color: white;
}

.section-sky {
  background: var(--sky);
}

.section-orchid {
  background: var(--orchid);
  color: white;
}

.section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ---------- Product links and media ---------- */

/* Wide enough to separate the links side by side, tight when they stack. */
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.25rem;
  row-gap: 0.35rem;
}

.product-card-more {
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--breeze);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- Featured product ---------- */

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  background: var(--milk);
  color: var(--black-cat);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.22);
}

.product-feature-media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-feature-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
}

.product-feature-body h3 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1;
}

.product-feature-body p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 32rem;
}

.product-feature-body .spec-list {
  margin-top: 0.5rem;
}

.product-feature-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ---------- Coming soon ---------- */

/* An h3, so it already carries the display serif; this sets only the size. */
.upcoming-head {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  margin: 4rem 0 1.5rem;
}

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

/* Solid lilac rather than a tint of the section background: these carry the
   waitlist, which is how demand gets measured, so they have to be seen. */
.upcoming-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--lilac);
  color: var(--black-cat);
}

.upcoming-card h4 {
  font-size: 1.5rem;
  line-height: 1.1;
}

.upcoming-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.75;
  flex: 1;
}

.upcoming-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
  margin-top: 0.5rem;
}

.upcoming-cta {
  --btn-icon: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.6rem;
  background: var(--breeze);
  color: var(--milk);
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.25s ease;
}

.upcoming-cta:hover,
.upcoming-cta:focus-visible {
  background: var(--orchid);
}

.upcoming-link {
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--breeze);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- Product detail page ---------- */

.page-body {
  padding-top: var(--nav-height);
}

.product-hero {
  padding-block: 4.5rem 3rem;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.product-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.95;
  margin: 0.75rem 0 1.25rem;
}

.product-lede {
  font-size: 1.25rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 34rem;
}

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

.product-gallery figure {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--lilac);
  aspect-ratio: 1;
}

.product-gallery figure:first-child {
  grid-column: 1 / -1;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spec-list {
  list-style: none;
  display: grid;
  gap: 0.875rem;
  margin-top: 2rem;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.spec-list svg {
  color: var(--breeze);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ---------- Concept product pages ---------- */

/* These four are renders of products still in development, so every page
   carries the disclaimer and shows the images uncropped. */
.concept-note {
  border-left: 3px solid var(--orchid);
  background: rgba(92, 64, 140, 0.07);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 34rem;
}

.concept-note-label {
  display: block;
  font-family: 'FoundersGroteskMono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orchid);
  margin-bottom: 0.35rem;
}

.concept-note p {
  font-size: 0.875rem;
  line-height: 1.55;
  opacity: 0.8;
  margin: 0;
}

.product-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
}

.product-story {
  padding-block: 4.5rem;
}

.story-copy {
  max-width: 44rem;
  margin: 0 auto;
}

.story-copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.story-closer {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  font-family: 'RiccioneSerialXlight', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.concept-gallery-section {
  padding-block: 4.5rem;
}

/* Columns rather than a grid, so mixed aspect ratios tile without cropping. */
.concept-gallery {
  columns: 2;
  column-gap: 1rem;
}

.concept-gallery:has(figure:only-child) {
  columns: 1;
  max-width: 32rem;
}

.concept-gallery figure {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--lilac);
}

.concept-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .concept-gallery {
    columns: 1;
  }
}

/* ---------- Waitlist form ---------- */

.waitlist {
  background: var(--lilac);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 34rem;
}

.waitlist h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--black-cat);
}

.waitlist p {
  font-size: 0.9375rem;
  color: var(--black-cat);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.waitlist-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.waitlist input[type="email"] {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.9rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 15, 15, 0.2);
  background: var(--milk);
  font-family: inherit;
  font-size: 1rem;
  color: var(--black-cat);
}

.waitlist input[type="email"]:focus-visible {
  outline: 2px solid var(--breeze);
  outline-offset: 1px;
}

.waitlist-hp {
  position: absolute;
  left: -5000px;
}

.waitlist-status {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  min-height: 1.5rem;
}

.waitlist-status:empty {
  min-height: 0;
  margin: 0;
}

.waitlist-status[data-state="error"] {
  color: #9b1c1c;
}

.waitlist-status[data-state="success"] {
  color: var(--grass);
  font-weight: 600;
}

/* ---------- About page ---------- */

.about-hero {
  padding-block: 5rem 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.about-copy .sub {
  font-family: "FoundersGroteskMono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  color: var(--breeze);
  display: block;
  margin-bottom: 2rem;
}

.about-copy p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.about-collage img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
}

/* ---------- Partner page ---------- */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
}

.partner-card {
  position: relative;
  min-height: 15rem;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  color: white;
  background-color: var(--black-cat);
  background-size: cover;
  background-position: center;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.75),
    rgba(15, 15, 15, 0.25)
  );
}

.partner-card > * {
  position: relative;
}

.partner-card svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.25rem;
}

.partner-card h3 {
  font-family: "FoundersGroteskMono", monospace;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.partner-card p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.4;
}

.benefits {
  background: rgba(15, 15, 15, 0.05);
  border-radius: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
}

.benefits h2 {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.benefit-list svg {
  color: var(--grass);
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.partner-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--black-cat);
  color: var(--milk);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 3rem;
}

.footer h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

.footer a {
  color: var(--milk);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-tagline {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  max-width: 22rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(253, 248, 240, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-btn:hover {
  background: rgba(253, 248, 240, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom a {
  text-decoration: underline;
  opacity: 1;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .upcoming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-hero-inner,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-collage {
    order: -1;
  }

  .waitlist {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-logo {
    margin-right: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--milk);
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    box-shadow: 0 12px 32px rgba(15, 15, 15, 0.12);
    padding: 1rem 1.5rem 1.5rem;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-link {
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    font-size: 0.9375rem;
  }

  /* In the drawer the product list is always expanded -- no nested menus. */
  .nav-menu-panel {
    position: static;
    border: 0;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 0 0 0.5rem 0.5rem;
  }

  .nav-menu-panel[hidden] {
    display: grid;
  }

  .nav-menu-trigger {
    display: none;
  }

  .nav-menu::before {
    content: "Products";
    display: block;
    padding: 0.75rem 0.5rem 0.25rem;
    font-family: "FoundersGroteskMono", monospace;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero {
    padding: calc(var(--nav-height) + 1rem) 1rem 1rem;
  }

  .hero-content {
    margin-top: -4rem;
  }

  .hero-logo {
    height: 6rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-tagline {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .upcoming-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .about-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 1rem) 0.5rem 1rem;
  }

  .hero-logo {
    height: 4rem;
    margin-bottom: 1rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .product-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .waitlist {
    padding: 1.5rem;
  }

  .scroll-arrow {
    bottom: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-arrow {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Store badges ---------- */

.store-badges[hidden] {
  display: none;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  text-decoration: none;
}

.store-badge img {
  display: block;
  height: 3rem;
  width: auto;
}

/* Google's official badge ships with 41px of transparent padding on a 250px
   canvas, so it needs ~1.49x Apple's height to read the same size, and a
   negative inline margin to sit the right distance from its neighbour. */
.store-badge[data-store="android"] img {
  height: 4.46rem;
  margin-inline: -0.72rem;
}

.store-pending {
  background: var(--lilac);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 30rem;
}

.store-pending h2 {
  font-size: 1.375rem;
  margin-bottom: 0.35rem;
  color: var(--black-cat);
}

/* ---------- App page ---------- */

.app-hero {
  padding-block: 4.5rem 3rem;
}

.app-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.app-row.reverse .app-row-copy {
  order: 2;
}

.app-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.95;
  margin: 0.75rem 0 1.25rem;
}

.app-lede {
  font-size: 1.25rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.app-row-copy > h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.app-row-copy > p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 34rem;
}

.app-row-copy > p:last-child {
  margin-bottom: 0;
}

.app-section {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.section-orchid .app-row-copy > h2,
.section-breeze .app-row-copy > h2 {
  color: white;
}

.phone,
.phone-pair {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* Without this the boxes stretch to the tallest and the shorter image
     leaves the frame's own background showing as a thicker bottom bezel. */
  align-items: flex-start;
}

.screen {
  width: 100%;
  max-width: 20rem;
  overflow: hidden;
  border-radius: 2.25rem;
  box-shadow: 0 18px 36px rgba(15, 15, 15, 0.22);
  line-height: 0;
}

.phone-pair .screen {
  max-width: 11rem;
  border-radius: 1.6rem;
}

/* Thinner bezel at this size, and the extra width keeps the screen itself
   the same size as it was before the frame was added. */
.phone-pair .screen.is-framed {
  --bezel: 0.4rem;
  max-width: 11.8rem;
}

.screen img {
  display: block;
  width: 100%;
}

/* A bezel drawn around the screenshot rather than baked into it: the border
   box rounds to 2.25rem and the inner corners follow at the difference, so
   the image stays a small JPEG and the frame stays sharp at any size. */
.screen.is-framed {
  border: var(--bezel, 0.6rem) solid #141414;
  background: #141414;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.3);
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  list-style: none;
}

.event-types li {
  font-family: "FoundersGroteskMono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  background: rgba(15, 15, 15, 0.06);
}

.section-orchid .event-types li,
.section-breeze .event-types li {
  background: rgba(255, 255, 255, 0.16);
}

.app-callout {
  background: var(--lime);
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 3rem;
  max-width: 46rem;
}

.app-callout h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--black-cat);
}

.app-callout p {
  color: var(--black-cat);
  margin-bottom: 0;
}

.app-cta {
  text-align: center;
}

.app-cta .store-badges,
.app-cta .store-pending {
  justify-content: center;
  margin-inline: auto;
}

/* ---------- App band on the home page ---------- */

.app-band {
  background: var(--lilac);
  padding: 5rem 0;
}

.app-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* The band is already lilac, so the pending note needs its own ground. */
.app-band .store-pending {
  background: var(--milk);
}

.app-band .screen {
  max-width: 17rem;
}

/* Three screens sized as a proportion of the column, so the cluster scales
   with it instead of needing a breakpoint per width. */
.phone-trio {
  align-items: center;
  gap: 3%;
}

.phone-trio .screen {
  flex: 0 0 27%;
  max-width: none;
  --bezel: 0.35rem;
  border-radius: 1.3rem;
}

/* The middle one is the screen being shown off; the others flank it. */
.phone-trio .screen:nth-child(2) {
  flex-basis: 38%;
  --bezel: 0.5rem;
  border-radius: 1.8rem;
}

.app-band h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.app-band p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

@media (max-width: 900px) {
  .app-row,
  .app-band-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-row.reverse .app-row-copy {
    order: 0;
  }

  .app-row .phone,
  .app-row .phone-pair,
  .app-band .phone {
    order: -1;
  }

  .app-callout {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .phone-pair {
    gap: 0.6rem;
  }

  .store-badge img {
    height: 2.6rem;
  }

  .store-badge[data-store="android"] img {
    height: 3.87rem;
    margin-inline: -0.62rem;
  }
}

.app-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}
