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

:root {
  --bg: #f7f7f3;
  --bg-soft: #edf3ee;
  --text: #1e2a26;
  --text-dark: #16211d;
  --text-soft: #42544d;
  --green: #2f5a4b;
  --green-dark: #25483c;
  --green-deep: #1d2a26;
  --border: #dde3dc;
  --pill-border: #d8e0d9;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 90%);
  margin: 0 auto;
}

.site-header {
  background: rgba(247, 247, 243, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

nav a {
  margin-left: 24px;
  color: #31433d;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.75;
}

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(
    to bottom,
    #e8f1ea 0%,
    #eef4ee 40%,
    #f7f7f3 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #567062;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.section h2 {
  margin-top: 34px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.hero-text,
.section p {
  font-size: 1.06rem;
  color: var(--text-soft);
}

.hero-text {
  max-width: 520px;
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(47, 90, 75, 0.25);
}

.button.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid #9fb3a8;
  color: #2c4139;
  background: var(--white);
}

.button.secondary:hover {
  background: #f9fbf9;
}

.app-store-badge {
  width: 180px;
  height: auto;
  border-radius: 0;
  display: block;
}

.section.alt .app-store-badge {
  margin: 18px auto 0;
}

.hero-buttons a {
  display: flex;
  align-items: center;
}

.hero-image-card {
  background: var(--white);
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.phone-frame {
  background: #111;
  padding: 12px;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  max-width: 300px;
  margin: 0 auto;
  transform: translateY(10px);
}

.phone-frame img {
  border-radius: 24px;
  display: block;
  width: 100%;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section.alt {
  background: var(--bg-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.pillars span {
  background: var(--white);
  border: 1px solid var(--pill-border);
  padding: 12px 16px;
  border-radius: 999px;
  color: #324640;
}

.screenshot-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
  justify-items: center;
}

.screenshot-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;   /* was 900px */
  gap: 28px;          /* was 40px */
  margin: 40px auto 0;
}

.screenshot-label {
  text-align: center;
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;     /* stronger */
  color: #3f524a;       /* slightly darker */
}

.how-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.how-grid.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.how-copy {
  max-width: 560px;
  margin-top: 10px;
}

.app-shot {
  max-width: 320px;
  margin: 0 auto;
  align-self: start;
}

.app-shot img {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.app-shot img:hover {
  transform: translateY(-3px);
}

.recovery-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.recovery-shots .app-shot {
  max-width: 100%;
}

.wolf-section {
  background: var(--green-deep);
  color: #eef3ef;
  padding: 120px 0;
  border-bottom: none;
}

.wolf-section h2,
.wolf-section p {
  color: #eef3ef;
}

.wolf-section h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.wolf-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
}

.wolf-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  padding: 40px;
  border-radius: 32px;
}

.wolf-symbol img {
  max-width: 260px;
  width: 100%;
  height: auto;
  filter: brightness(1.2);
}

.wolf-copy {
  max-width: 620px;
}

.wolf-copy p {
  margin-bottom: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: var(--bg);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-flex a {
  margin-left: 18px;
  color: var(--text-soft);
}

.hero,
.section {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-wrapper {
  margin-top: 28px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wolf-video {
  margin: 28px 0 26px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.wolf-video video {
  width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .screenshot-grid.two-up {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .recovery-shots {
  grid-template-columns: 1fr;
}

  .how-grid,
  .how-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wolf-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .wolf-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .wolf-symbol img {
    max-width: 180px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  nav {
    justify-content: center;
  }

  nav a {
    margin-left: 14px;
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.7rem;
  }

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

  .hero {
    padding: 70px 0 50px;
  }

  .section {
    padding: 60px 0;
  }

  .wolf-section h2 {
    font-size: 2rem;
  }

  .phone-frame {
    max-width: 260px;
  }

  .app-shot {
    max-width: 280px;
  }
}