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

:root {
  --cream: #F4E9D7;
  --orange: #F9601F;
  --green: #0B3D1A;
  --green-soft: rgba(11, 61, 26, 0.6);
  --green-very-soft: rgba(11, 61, 26, 0.4);
}

html, body {
  background: var(--cream);
  color: var(--green);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.page { display: flex; min-height: 100vh; }

/* Logo pane — fixed left */
.logo-pane {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  z-index: 1;
}

.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* The app logo (assets/logo-full.png) fills the pane, contained. */
.logo-img {
  width: min(58%, 380px);
  height: auto;
  max-height: 68vh;
  object-fit: contain;
  display: block;
}

/* Text wordmark fallback, shown only if the logo image is missing. */
.logo-fallback {
  display: none;
  align-items: baseline;
  line-height: 1;
}

.lf-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(72px, 16vh, 200px);
  line-height: 0.9;
  color: var(--cream);
  text-align: left;
}

.lf-dot {
  width: 6vh;
  height: 6vh;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 1.5vh;
  align-self: flex-end;
  margin-bottom: 1.5vh;
  flex-shrink: 0;
}

/* Content pane */
.content-pane {
  margin-left: 50vw;
  width: 50vw;
  padding: 80px 64px;
  min-height: 100vh;
}

/* Eyebrows */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 40px;
}

.eyebrow-small {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 48px;
}

/* Hero */
.hero { margin-bottom: 120px; text-align: center; }

/* Wordmark stands in for the hero heading */
.hero-wordmark {
  width: min(100%, 400px);
  height: auto;
  display: block;
  margin: 0 auto 36px;
}

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  margin-left: -4px;
}

h1 em {
  font-style: normal;
  display: inline-block;
  margin-left: -2px;
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 480px;
}

/* Store badges — a centred row built for two badges side by side.
   Google's official PNG carries transparent padding inside the image; the
   future App Store badge doesn't, so it gets a smaller height to match. */
.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.store-badges a { display: inline-block; line-height: 0; }

.badge-img { height: 64px; width: auto; display: block; }
.badge-img-appstore { height: 44px; margin: 10px 0; }

.hero-note {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  color: var(--green-soft);
  font-size: 16px;
  margin-left: -4px;
}

/* Phones */
.phones { margin-bottom: 120px; }

.phones-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: -16px;
}

.phone {
  background: var(--green);
  border-radius: 28px;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 24px 48px rgba(11, 61, 26, 0.18);
}

.phone-1 { transform: rotate(-7deg) translateY(24px); width: 150px; height: 320px; }
.phone-2 { transform: rotate(0deg); width: 165px; height: 350px; z-index: 2; }
.phone-3 { transform: rotate(7deg) translateY(24px); width: 150px; height: 320px; }

.phone-screen {
  background: var(--cream);
  border-radius: 22px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* Real app screenshots fill each phone */
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Shown behind each screenshot; visible until a real screenshot is added. */
.screen-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  color: var(--green-very-soft);
  font-size: 13px;
  background: var(--cream);
}

/* Features */
.features { margin-bottom: 120px; display: grid; gap: 48px; }

.feature h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 8px;
  margin-left: -3px;
  color: var(--green);
}

.feature h3 em { font-style: normal; }

.feature p { font-size: 17px; color: var(--green-soft); line-height: 1.5; }

/* Close */
.close {
  margin-bottom: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(11, 61, 26, 0.08);
}

.close h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  margin-left: -4px;
  color: var(--green);
}

.close h2 em { font-style: normal; }

.close-note {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  color: var(--orange);
  font-size: 18px;
  margin-left: -3px;
}

/* Footer */
footer { padding-top: 32px; border-top: 1px solid rgba(11, 61, 26, 0.08); }

.footer-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  font-size: 16px;
  color: var(--green);
  margin-bottom: 20px;
  margin-left: -3px;
}

.footer-links { font-size: 13px; color: var(--green-soft); margin-bottom: 12px; }
.footer-links a { color: var(--green); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-links span { margin: 0 8px; color: var(--green-very-soft); }
.footer-copy { font-size: 11px; color: var(--green-very-soft); letter-spacing: 0.02em; }

/* Mobile */
@media (max-width: 900px) {
  .page { flex-direction: column; }

  .logo-pane {
    position: relative;
    width: 100vw;
    height: 46vh;
    min-height: 340px;
  }

  .logo-img { width: min(70%, 320px); max-height: 34vh; }
  .lf-text { font-size: clamp(56px, 18vw, 120px); }
  .lf-dot { width: 4.5vh; height: 4.5vh; }

  .content-pane { margin-left: 0; width: 100vw; padding: 48px 24px; }

  .phones-row { gap: 6px; margin-left: 0; }
  .phone-1, .phone-3 { width: 110px; height: 240px; }
  .phone-2 { width: 120px; height: 260px; }

  .badge-img { height: 56px; }
  .badge-img-appstore { height: 38px; margin: 9px 0; }

  h1 { font-size: clamp(40px, 10vw, 64px); }
  .eyebrow { font-size: 15px; }
  .features { gap: 36px; }
  .feature h3 { font-size: 30px; }
}
