/* ============================================================
   COVEE LANDING PAGE — STYLES
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #fffaf7;
  --green-light: #ebf1ed;
  --teal:        #429e98;
  --teal-light:  #56c9cd;
  --mint:        #b2e4b2;
  --green-dark:  #375537;
  --orange:      #ff7a00;
  --dark:        #2d2d2d;
  --navy:        #121d33;
  --gray:        #6b7280;
  --yellow:      #ffd253;
  --white:       #ffffff;

  --font-head: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1280px;
  --section-px: 80px;
  --section-py: 120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  cursor: url('assets/cursors/bone-dark.png') 32 16, auto;
}

/* Light bone on dark/teal sections */
.hero,
.stats,
.signup,
.footer {
  cursor: url('assets/cursors/bone-light.png') 32 16, auto;
}

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

/* --- Utility ---------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.container--narrow {
  max-width: 860px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  border-radius: 16px;
  padding: 16px 44px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover  { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin-bottom: 56px;
}

.section-heading--light { color: var(--white); }

.text-teal { color: var(--teal); }

/* --- Reveal animation ------------------------------------- */
.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-section.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(178.94deg, rgba(102,102,102,0) 28%, rgba(0,0,0,0.72) 104%);
}

/* Nav */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px var(--section-px);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.nav__logo-icon    { height: 36px; width: 67px; }
.nav__logo-wordmark { height: 19px; width: 101px; }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--section-px) 80px;
  max-width: 1000px;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--white);
  min-height: 2.4em;
  margin-bottom: 32px;
}

.hero__line { display: block; }

.hero__line::after {
  content: '|';
  opacity: 1;
  animation: blink 0.75s step-end infinite;
  margin-left: 2px;
}

.hero__line.done::after { display: none; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__sub {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__sub.visible { opacity: 1; }

.hero__sub-main {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.hero__sub-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
}

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

/* ============================================================
   PERKS SECTION
   ============================================================ */
.perks {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.perks__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--green-dark);
  background: transparent;
  border: 1px solid var(--mint);
  border-radius: 100px;
  padding: 6px 20px;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 56px;
  /* center it within the container */
  display: flex;
  align-self: center;
  width: fit-content;
  margin-inline: auto;
}

.perks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.perk-item__card {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk-item__card img { width: 100%; height: 100%; object-fit: contain; }

.perk-item__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: var(--dark);
  padding: var(--section-py) 0 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
}

.stat-col {
  text-align: center;
  padding: 0 24px;
}

.stat-col__num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 64px);
  color: var(--teal);
  line-height: 1;
}

.stat-col__pct {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--teal);
  line-height: 1;
}

.stat-col__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 280px;
  margin-inline: auto;
}

.stat-col__divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

.stats__closing {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--white);
  margin-bottom: 64px;
}

.stats__bushes {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-bottom: -57px;
}
.bushes-img { width: 105%; margin-left: -2.5%; display: block; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: var(--section-py) 0;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.step:last-child { margin-bottom: 0; }

.step--right .step__text  { order: 2; }
.step--right .step__mockup { order: 1; }

.step__text {
  position: relative;
  padding-left: 32px;
}

.step__marker {
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: calc(100% - 4px);
  background: var(--teal-light);
}
.step__marker span {
  position: absolute;
  top: 0;
  left: -14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.step__body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
}

/* App screenshot frame */
.mockup-phone {
  border-radius: 20px;
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  line-height: 0;
}
.mockup-phone img { width: 100%; height: auto; display: block; }

/* ============================================================
   MATCH + TRAIN FEATURES
   ============================================================ */
.features {
  background: var(--cream);
  padding-top: var(--section-py);
  padding-bottom: 0;
}

.features__header {
  margin-bottom: 56px;
}

.section-heading--left {
  text-align: left;
  margin-bottom: 0;
}

/* Two full-bleed panels, side by side, no container */
.features__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
}

.feature-panel {
  position: relative;
  min-height: 740px;
  background-size: cover;
  background-position: center top;
}

/* Match: dogs photo */
.feature-panel--match {
  background-image: url('assets/images/match-panel.png');
}

/* Dark gradient so white text is legible over the photo */
.feature-panel--match::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  pointer-events: none;
}

/* Train: teal pixel-art image */
.feature-panel--train {
  background-image: url('assets/images/train-panel.png');
}

/* Overlay text content — pinned to bottom of panel */
.feature-panel__content {
  position: absolute;
  bottom: 20px;
  left: 80px;
  right: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 42px;
  max-width: 480px;
}

/* Pill */
.feature-panel__pill {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  background: var(--white);
  border-radius: 100px;
  padding: 6px 20px;
  letter-spacing: 0.02em;
}

/* Heading */
.feature-panel__heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--white);
}

/* Body */
.feature-panel__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  min-height: 130px;
}

/* Train panel: dark text since teal bg is light enough */
.feature-panel--train .feature-panel__pill {
  color: var(--teal);
}

.feature-panel--train .feature-panel__heading {
  color: var(--dark);
}

.feature-panel--train .feature-panel__body {
  color: rgba(0,0,0,0.65);
}

/* Step 3 pixel-art visual */
.step__mockup--wide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__pixel-art {
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.step__coin {
  display: block;
  width: 72px;
  height: 72px;
  margin-top: 28px;
  image-rendering: pixelated;
}

/* Pixel pup — Step 1 */
.step__pup {
  display: block;
  width: 80px;
  height: auto;
  margin-top: 28px;
  image-rendering: pixelated;
  animation: pupBounce 2.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes pupBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-10px); }
  55%       { transform: translateY(-4px); }
  75%       { transform: translateY(-8px); }
}

/* Clouds — Step 2 (Frame 299 + Frame 300, no background) */
.step__clouds-wrap {
  position: relative;
  height: 100px;
  margin-bottom: 24px;
}

.step__cloud {
  position: absolute;
  image-rendering: pixelated;
  will-change: transform;
}

.step__cloud--big {
  width: 130px;
  height: auto;
  bottom: 0;
  left: 0;
  animation: cloudLeft 10s ease-in-out infinite;
}

.step__cloud--small {
  width: 78px;
  height: auto;
  top: 0;
  right: 0;
  animation: cloudRight 13s ease-in-out infinite;
}

/* ============================================================
   CONNECTION
   ============================================================ */
.connection {
  background: var(--white);
  padding: var(--section-py) 0;
  text-align: center;
}

/* Bounce container — padding-top gives the heart room to travel upward */
.connection__heart-wrap {
  width: 77px;
  padding-top: 20px;     /* headroom for the upward bounce */
  margin: -20px auto 32px; /* pull back so spacing stays the same */
}

.connection__heart {
  display: block;
  width: 77px;
  height: 65px;
  image-rendering: pixelated;
  animation: heartBounce 1.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform;
}

@keyframes heartBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-14px); }
  60%       { transform: translateY(-6px); }
  80%       { transform: translateY(-11px); }
}

.connection__body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--gray);
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.founder__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  background: rgba(66,158,152,0.1);
  border-radius: 100px;
  padding: 5px 16px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.founder__heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 28px;
}

.founder__heading--accent {
  color: var(--teal);
}

.founder__body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}
.founder__body:last-child { margin-bottom: 0; }

.founder__photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.signup {
  display: flex;
  min-height: 460px;
}

.signup__left {
  width: 38.75%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 40px;
}

.signup__logo-icon    { display: block; width: 156px; height: 85px; }
.signup__logo-wordmark { display: block; width: 237px; height: 45px; }

.signup__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.signup__right {
  flex: 1;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  gap: 24px;
}

.signup__heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.signup__sub {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  line-height: 1.1;
}

.signup__form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.signup__input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
}
.signup__input::placeholder { color: #9ca3af; }

.signup__fine {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer__link:hover { color: rgba(255,255,255,0.7); }

.footer__link-sep { color: rgba(255,255,255,0.2); }

/* ============================================================
   STICKY NAV
   ============================================================ */

.sticky-nav {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sticky-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255,255,255,0.8) inset;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 76px;
  width: 148px;
  padding: 0 16px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-nav:hover .sticky-nav__inner {
  width: 1054px;
  justify-content: space-between;
  padding: 0 12px 0 20px;
}

.sticky-nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.sticky-nav__icon     { display: block; width: 52px;  height: 28px; flex-shrink: 0; }
.sticky-nav__wordmark { display: block; width: 80px;  height: 15px; flex-shrink: 0; }

/* CTA: collapsed to zero-width so it doesn't affect logo centering */
.sticky-nav__cta {
  flex-shrink: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border-radius: 16px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding-left  0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding-right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.22s ease 0.3s;
}

.sticky-nav:hover .sticky-nav__cta {
  max-width: 300px;
  padding-left: 44px !important;
  padding-right: 44px !important;
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≤ 900px */
@media (max-width: 900px) {
  :root {
    --section-px: 40px;
    --section-py: 80px;
  }

  .perks__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
    margin-inline: auto;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-col { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-col:last-child { border-bottom: none; }
  .stat-col__divider { display: none; }

  .step {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }
  .step--right .step__text  { order: 1; }
  .step--right .step__mockup { order: 2; }

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

  .feature-panel {
    min-height: 520px;
  }

  /* Fix content padding — 80px sides is too tight on phone */
  .feature-panel__content {
    left: 24px;
    right: 24px;
    bottom: 24px;
    gap: 16px;
    max-width: none;
  }

  /* Remove the desktop min-height lock so text block stays compact */
  .feature-panel__body {
    min-height: auto;
    font-size: 14px;
  }

  .feature-panel__heading {
    font-size: 22px;
  }

  /* Add same bottom gradient to Train panel so text is legible on mobile */
  .feature-panel--train::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
    pointer-events: none;
  }

  /* Switch Train text to white on mobile since we now have a dark gradient */
  .feature-panel--train .feature-panel__heading {
    color: var(--white);
  }

  .feature-panel--train .feature-panel__body {
    color: rgba(255,255,255,0.85);
  }

  .founder__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder__photo-wrap {
    max-width: 400px;
    margin-inline: auto;
    aspect-ratio: 4/3;
  }

  .signup { flex-direction: column; min-height: unset; }
  .signup__left { width: 100%; padding: 48px 40px; }
  .signup__right { padding: 48px 40px; }
}

/* Tablet ≤ 1120px — cap sticky nav expanded width so it never overflows viewport */
@media (max-width: 1120px) {
  .sticky-nav:hover .sticky-nav__inner {
    width: min(1054px, calc(100vw - 48px));
  }
}

/* Scroll-margin so sticky nav never covers section headings on anchor jump */
section[id] { scroll-margin-top: 116px; }

/* Touch/tablet ≤ 768px — hide sticky nav (hover-expand is unusable on touch) */
@media (max-width: 768px) {
  .sticky-nav { display: none; }
  section[id] { scroll-margin-top: 0; }
}

/* Mobile ≤ 600px */
@media (max-width: 600px) {
  :root {
    --section-px: 24px;
    --section-py: 64px;
  }



  /* Hero nav */
  .nav { padding: 20px var(--section-px); }
  .nav__logo-icon     { width: 44px; height: 24px; }
  .nav__logo-wordmark { width: 66px; height: 10px; }
  .nav__logo { gap: 4px; }
  .nav__cta { padding: 12px 20px; font-size: 14px; white-space: nowrap; }

  .hero__content { padding-bottom: 60px; }

  .section-heading { margin-bottom: 36px; }

  /* Steps */
  .step__clouds-wrap { height: 72px; }
  .step__mockup--wide { max-width: 100%; }
  .step__pixel-art    { max-width: 100%; height: auto; }

  /* Signup — scale logo down for narrow screens */
  .signup__left     { padding: 40px 24px; }
  .signup__right    { padding: 40px 24px; }
  .signup__logo-icon     { width: 96px; height: 52px; }
  .signup__logo-wordmark { width: 145px; height: 27px; }

  .mockup-phone { max-width: 100%; }

  .footer__inner { flex-direction: column; text-align: center; }

  .signup__form { flex-direction: column; }
  .signup__input { width: 100%; }
  .signup__form .btn { width: 100%; }
}
