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

:root {
  --olive:   #576b48;
  --lavender:#c7acd3;
  --cream:   #fffae6;
  --yellow:  #d1a137;
  --font:    'Josefin Sans', 'Futura', 'Century Gothic', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--olive);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 230, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--olive);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-logo {
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--olive);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: #3f4f34;
  transform: translateY(-1px);
}

nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: var(--lavender);
  top: -90px;
  left: -120px;
  opacity: 0.58;
}

.hero::after {
  width: 340px;
  height: 340px;
  background: var(--lavender);
  bottom: -80px;
  right: -100px;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(460px, 640px) minmax(320px, 1fr);
  align-items: center;
  gap: 2.5rem;
  min-height: calc(100svh - 10rem);
}

.hero-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 620px;
  margin-left: 4rem;
  position: relative;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 12rem);
  padding: 0;
}

.hero-stage::before {
  content: '';
  position: absolute;
  width: min(72%, 340px);
  height: min(82%, 560px);
  border-radius: 36px;
  background: rgba(87, 107, 72, 0.22);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.app-badge {
  display: block;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 1.15rem;
  opacity: 0.75;
}

.hero-title {
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.78;
  margin-bottom: 1.5rem;
}

.description {
  max-width: 43ch;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--olive);
  opacity: 0.85;
  margin-bottom: 2.2rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--olive);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(87, 107, 72, 0.25);
}

.btn-primary:hover {
  background: #3f4f34;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(87, 107, 72, 0.3);
}

.hero-screenshot {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: min(72vh, 680px);
  display: block;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  background: transparent;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid var(--olive);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: rgba(87, 107, 72, 0.07);
  transform: translateY(-2px);
}

/* ── WHO IT'S FOR ── */
.who-for {
  padding: 6rem 2rem;
  background: #e4d7e7;
}

.who-for .section-label,
.who-for .section-title {
  color: var(--olive);
}

.who-for .section-label {
  opacity: 0.62;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.who-for-card {
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid rgba(87, 107, 72, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 230, 0.78);
  box-shadow: 0 16px 34px rgba(87, 107, 72, 0.08);
}

.who-for-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: var(--olive);
  margin-bottom: 1rem;
}

.who-for-card p:last-child {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(87, 107, 72, 0.86);
}

/* ── SCREENSHOTS ── */
.screenshots {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.screenshots::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  width: 600px;
  height: 600px;
  background: var(--lavender);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screenshots .section-label {
  color: var(--olive);
  opacity: 0.6;
}

.screenshots .section-title {
  color: var(--olive);
}

.screenshot-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.screenshot-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.screenshot-item .shot {
  display: inline-block;
  line-height: 0;
  /* Keep the element on its own GPU compositing layer at all times.
     Safari renders drop-shadow fine while composited (e.g. during a
     transition) but re-rasterizes it through a low-quality static
     path once it drops the layer, clipping the shadow. translateZ +
     will-change pin the layer so the good path is always used. */
  transform: translateZ(0);
  will-change: transform;
  filter: drop-shadow(0 12px 20px rgba(87, 107, 72, 0.24))
          drop-shadow(0 4px 9px rgba(87, 107, 72, 0.14));
  transition: transform 0.3s, filter 0.3s;
}

.screenshot-item img {
  width: 220px;
  display: block;
}

.screenshot-item .shot:hover {
  transform: translate3d(0, -6px, 0);
  filter: drop-shadow(0 20px 30px rgba(87, 107, 72, 0.28))
          drop-shadow(0 7px 14px rgba(87, 107, 72, 0.16));
}

.screenshot-item.featured .shot {
  transform: translate3d(0, -16px, 0);
  filter: drop-shadow(0 18px 28px rgba(87, 107, 72, 0.28))
          drop-shadow(0 6px 13px rgba(87, 107, 72, 0.16));
}

.screenshot-item.featured img {
  width: 250px;
}

.screenshot-item.featured .shot:hover {
  transform: translate3d(0, -22px, 0);
  filter: drop-shadow(0 26px 38px rgba(87, 107, 72, 0.32))
          drop-shadow(0 9px 18px rgba(87, 107, 72, 0.18));
}

.screenshot-caption {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.55;
}

/* ── FEATURES ── */
.features {
  padding: 6rem 2rem;
  background: var(--olive);
  position: relative;
}

.section-label {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.features .section-label {
  color: var(--cream);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 3.5rem;
}

.features-list {
  max-width: 860px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.feature-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-right: 0.45rem;
}

.features-list li {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: rgba(255, 250, 230, 0.75);
  margin-bottom: 1.25rem;
}

/* ── FOUNDER NOTE ── */
.founder-note {
  padding: 6rem 2rem;
  background: #e4d7e7;
}

.founder-note-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.8rem;
  align-items: start;
}

.founder-note .founder-photo {
  display: block;
  width: 260px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(87, 107, 72, 0.12);
}

.founder-note-copy {
  min-width: 0;
}

.founder-note-title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--olive);
  margin-bottom: 2rem;
}

.founder-note p {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.02em;
  color: rgba(87, 107, 72, 0.9);
  margin-bottom: 1.15rem;
}

.founder-note-highlight {
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.015em;
  color: var(--olive);
}

.founder-note-close {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--olive);
}

/* ── INSTAGRAM ── */
.instagram-callout {
  padding: 5rem 2rem;
  background: var(--cream);
}

.instagram-callout-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.instagram-callout .section-label {
  color: var(--olive);
  opacity: 0.62;
}

.instagram-callout-title {
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}

.instagram-callout-copy {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: rgba(87, 107, 72, 0.86);
  margin-bottom: 1.2rem;
}

.instagram-callout-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(87, 107, 72, 0.35);
  padding-bottom: 0.18rem;
  transition: opacity 0.2s, border-color 0.2s;
}

.instagram-callout-link:hover {
  opacity: 0.75;
  border-color: var(--olive);
}

/* ── QUOTE BAND ── */
.quote-band {
  padding: 5rem 2rem;
  background: var(--olive);
  text-align: center;
}

.quote-band blockquote {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--cream);
}

.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.78;
  font-style: normal;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid rgba(87, 107, 72, 0.1);
}

.footer-logo {
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.footer-link {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(87, 107, 72, 0.35);
  padding-bottom: 0.12rem;
  transition: opacity 0.2s, border-color 0.2s;
}

.footer-link:hover {
  opacity: 0.72;
  border-color: var(--olive);
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--olive);
  opacity: 0.7;
}

/* ── POLICY PAGE ── */
.policy-page {
  min-height: 100svh;
}

.policy-page nav {
  position: sticky;
}

.policy-main {
  width: min(860px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.policy-kicker {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.68;
  margin-bottom: 1rem;
}

.policy-title {
  font-family: 'Poppins', 'Futura', 'Century Gothic', sans-serif;
  font-size: clamp(2.35rem, 7vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}

.policy-updated {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(87, 107, 72, 0.74);
  margin-bottom: 3rem;
}

.policy-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(87, 107, 72, 0.14);
}

.policy-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 1.6rem 0 0.65rem;
}

.policy-section p,
.policy-section li {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.02em;
  color: rgba(87, 107, 72, 0.9);
}

.policy-section p + p,
.policy-section ul + p {
  margin-top: 1rem;
}

.policy-section ul {
  padding-left: 1.15rem;
}

.policy-section a {
  color: var(--olive);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.policy-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  padding-top: 2rem;
  margin: 2rem 0 1rem;
  border-top: 1px solid rgba(87, 107, 72, 0.14);
}

.policy-content > h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 1.6rem 0 0.65rem;
}

.policy-content p,
.policy-content li {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.02em;
  color: rgba(87, 107, 72, 0.9);
}

.policy-content p + p,
.policy-content ul + p,
.policy-content ol + p {
  margin-top: 1rem;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.15rem;
}

.policy-content a {
  color: var(--olive);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.policy-home-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--olive);
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(87, 107, 72, 0.2);
}

@media (max-width: 960px) {
  .nav-menu {
    gap: 1.1rem;
  }

  .nav-link {
    font-size: 0.96rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    min-height: auto;
  }

  .hero-rail {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-screenshot {
    width: auto;
    height: min(62vh, 560px);
  }

  .app-badge,
  .hero-title,
  .hero-subtitle,
  .description {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
  }

  .who-for-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav {
    padding: 1rem 1.1rem;
    align-items: center;
    position: fixed;
  }

  .nav-logo {
    font-size: 1.22rem;
  }

  .nav-toggle {
    display: inline-flex;
    width: 64px;
    height: 64px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.1rem;
    left: 1.1rem;
    display: none;
    min-width: 0;
    width: auto;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(87, 107, 72, 0.12);
    border-radius: 28px;
    background: rgba(255, 250, 230, 0.96);
    box-shadow: 0 18px 42px rgba(87, 107, 72, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }

  nav.nav-open .nav-menu {
    display: flex;
  }

  .nav-link {
    font-size: 1.12rem;
    padding: 0.45rem 0;
  }

  .nav-cta {
    width: 100%;
    font-size: 0.98rem;
    padding: 0.95rem 1.2rem;
    margin-top: 0.35rem;
  }

  .hero {
    padding-top: 11rem;
    padding-bottom: 3rem;
  }

  nav.nav-open + .hero {
    padding-top: 18rem;
  }

  .hero-inner {
    width: 100%;
    justify-items: center;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .hero-screenshot {
    width: auto;
    max-width: 100%;
    height: min(63vh, 540px);
  }

  .hero-rail {
    padding-inline: 0;
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .app-badge {
    padding-inline: 0;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    padding-inline: 0;
  }

  .description {
    padding-inline: 0;
    max-width: 21ch;
    font-size: 1.22rem;
    line-height: 1.76;
  }

  .cta-group {
    margin-bottom: 2.6rem;
  }

  .features-list {
    text-align: left;
    max-width: 320px;
  }

  .features {
    padding-top: 4.75rem;
    padding-bottom: 3.4rem;
  }

  .who-for {
    padding-top: 4.75rem;
    padding-bottom: 3.4rem;
  }

  .who-for-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .who-for-card {
    padding: 1.35rem;
  }

  .screenshots {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .founder-note {
    padding-top: 4.2rem;
    padding-bottom: 3.5rem;
  }

  .instagram-callout {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .quote-band {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .screenshot-row {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .screenshot-item.featured {
    order: -1;
  }

  .screenshot-item.featured .shot {
    transform: translateZ(0);
  }

  .screenshot-item.featured img {
    width: 250px;
  }

  .screenshot-item.featured .shot:hover {
    transform: translate3d(0, -6px, 0);
  }

  .screenshot-item img {
    width: 240px;
  }

  .founder-note-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .founder-note .founder-photo {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
