:root {
  --navy: #0f2a33;
  --navy-deep: #0a1c22;
  --forest: #2e5643;
  --sand: #d9cbb3;
  --clay: #c74e2b;
  --clay-soft: #b86b4b;
  --sky: #b6d8e3;
  --cream: #f4ede3;
  --parchment: #ebe0cf;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--navy);
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ——— Top composition (hero + phone + strip) ——— */
.landing-top {
  position: relative;
  overflow: visible;
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 3.25rem 1.25rem 3.5rem;
  overflow: visible;
}

@media (min-width: 960px) {
  .hero {
    min-height: 78vh;
    padding: 5.5rem 3.25rem 10rem;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 30%;
  animation: heroDrift 36s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(15, 42, 51, 0.58) 0%,
      rgba(15, 42, 51, 0.22) 45%,
      rgba(15, 42, 51, 0.05) 70%,
      rgba(15, 42, 51, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(15, 42, 51, 0.05) 40%, rgba(15, 42, 51, 0.35) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  animation: rise 700ms ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.1rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #e8f0e6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: inline-flex;
  width: 2.1rem;
  height: 2.35rem;
  color: #1f3b2e;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.25));
  flex-shrink: 0;
}

@media (min-width: 960px) {
  .brand-mark {
    width: 2.5rem;
    height: 2.8rem;
  }
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

h1::after {
  content: "";
  display: block;
  width: 72%;
  height: 3px;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--clay), rgba(199, 78, 43, 0.15));
  transform: rotate(-0.6deg);
}

.sub {
  margin: 0 0 1.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #e8a04a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
}

.waitlist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
}

.waitlist input {
  flex: 1 1 12rem;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.15rem;
  font: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: rgba(244, 237, 227, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.waitlist input::placeholder {
  color: rgba(15, 42, 51, 0.45);
}

.waitlist .cta {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 480px) {
  .waitlist {
    flex-direction: column;
  }

  .waitlist input,
  .waitlist .cta {
    width: 100%;
    flex: none;
  }

  .cta {
    white-space: normal;
    text-align: center;
  }

  .brand {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, background 180ms ease;
}

.cta svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}

.cta:hover {
  transform: translateY(-2px);
  background: #000;
}

.cta-clay {
  background: var(--clay);
  box-shadow: 0 12px 32px rgba(199, 78, 43, 0.4);
}

.cta-clay:hover {
  background: #a83d20;
}

.fine {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  color: rgba(244, 237, 227, 0.7);
}

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

/* Phone hangs off the hero into the forest strip — desktop only.
   On mobile it crushed the hero copy / CTAs. */
.hero-phone {
  display: none;
}

@media (min-width: 960px) {
  .hero-phone {
    display: block;
    position: absolute;
    z-index: 5;
    left: auto;
    right: max(2.75rem, calc((100vw - 1180px) / 2));
    bottom: -11rem;
    width: 320px;
    margin-left: 0;
    pointer-events: none;
    opacity: 0;
    animation: phoneIn 800ms 150ms ease forwards;
  }

  .hero-phone .phone-frame {
    pointer-events: auto;
  }
}

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

.phone-frame {
  margin: 0;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.5));
}

.phone-shot {
  width: 100%;
  height: auto;
}

/* ——— Forest torn strip ——— */
.strip {
  position: relative;
  background: var(--forest);
  padding: 0 0 2.75rem;
  z-index: 1;
}

.strip-torn {
  height: 36px;
  margin-top: -18px;
  background: radial-gradient(ellipse 16px 18px at 16px 0, transparent 15px, var(--forest) 16px)
    repeat-x;
  background-size: 32px 36px;
}

.strip-layout {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 1.5rem 0;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .strip-layout {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 200px);
    gap: 1.5rem;
    padding: 1.1rem 3.25rem 0;
    padding-right: max(22rem, calc((100vw - 1180px) / 2 + 20rem));
    align-items: center;
  }

  .strip-inner {
    max-width: 680px;
  }
}

.strip-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.strip-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  color: #e8a04a;
  margin-bottom: 0.5rem;
}

.strip-icon svg {
  width: 100%;
  height: 100%;
}

.strip h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0e6d4;
}

.strip p {
  margin: 0;
  color: rgba(240, 230, 212, 0.82);
  line-height: 1.45;
  font-size: 0.95rem;
}

.strip-note {
  background: var(--parchment);
  color: var(--clay-soft);
  border-radius: 4px;
  padding: 1.25rem 1.2rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  max-width: 220px;
  margin: 0.25rem auto 0;
  text-align: center;
}

@media (min-width: 960px) {
  .strip-note {
    margin: 0;
    justify-self: end;
  }
}

.strip-note p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--clay-soft);
}

.note-mountains {
  width: 88px;
  height: 22px;
  margin: 0.75rem auto 0;
  color: rgba(184, 107, 75, 0.7);
}

/* ——— How it works ——— */
.how {
  display: grid;
  gap: 2rem;
  padding: 4rem 1.5rem;
  background: var(--navy-deep);
}

@media (min-width: 900px) {
  .how {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 3.5rem;
    padding: 5rem max(3.5rem, calc((100vw - 1100px) / 2));
    align-items: start;
  }
}

.how-copy {
  max-width: 28rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--clay);
}

.how h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.how-copy > p:last-child {
  margin: 0;
  color: rgba(244, 237, 227, 0.75);
  line-height: 1.55;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clay);
  line-height: 1;
  padding-top: 0.15rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: rgba(244, 237, 227, 0.72);
  line-height: 1.45;
  font-size: 0.95rem;
}

/* ——— Sample ideas ——— */
.sample {
  padding: 4rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(46, 86, 67, 0.4), transparent 55%),
    var(--navy);
}

@media (min-width: 900px) {
  .sample {
    padding: 5rem max(3.5rem, calc((100vw - 1100px) / 2)) 5.5rem;
  }
}

.sample-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.sample-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
}

.sample-head > p:last-child {
  margin: 0;
  color: rgba(244, 237, 227, 0.72);
  line-height: 1.5;
}

.sample-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .sample-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.sample-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.35rem 1.3rem 1.45rem;
  transition: transform 200ms ease, background 200ms ease;
}

.sample-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
}

.sample-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clay);
}

.badge.hike {
  color: #7eb89a;
}

.badge.indoor {
  color: var(--sky);
}

.mins {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.sample-card h3 {
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.sample-card .pin {
  margin: 0 0 0.55rem;
  color: var(--sky);
  font-size: 0.85rem;
}

.sample-card > p:last-child {
  margin: 0;
  color: rgba(244, 237, 227, 0.78);
  line-height: 1.45;
  font-size: 0.95rem;
}

/* ——— Cadence ——— */
.cadence {
  padding: 4rem 1.5rem 4.5rem;
  background: #071418;
}

@media (min-width: 900px) {
  .cadence {
    padding: 5rem max(3.5rem, calc((100vw - 1100px) / 2)) 5.5rem;
  }
}

.cadence-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .cadence-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }
}

.cadence-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.cadence-copy > p:last-child {
  margin: 0;
  color: rgba(244, 237, 227, 0.72);
  line-height: 1.55;
  max-width: 28rem;
}

.cadence-cards {
  display: grid;
  gap: 0.9rem;
}

.cadence-card {
  padding: 1.2rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cadence-card.accent {
  background: rgba(46, 86, 67, 0.35);
  border-color: rgba(126, 184, 154, 0.25);
}

.cadence-when {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #e8a04a;
}

.cadence-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.cadence-card p:last-child {
  margin: 0;
  color: rgba(244, 237, 227, 0.72);
  line-height: 1.45;
  font-size: 0.95rem;
}

/* ——— Manifesto ——— */
.manifesto {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.manifesto-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-shade {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 51, 0.78);
}

.manifesto > *:not(.manifesto-media) {
  position: relative;
  z-index: 1;
}

.manifesto blockquote {
  margin: 0 auto 1rem;
  max-width: 28rem;
}

.manifesto blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  color: var(--sand);
  line-height: 1.25;
}

.manifesto-sub {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: rgba(244, 237, 227, 0.78);
  line-height: 1.5;
}

/* ——— Footer ——— */
.foot {
  padding: 2.25rem 1.5rem 2.75rem;
  background: #050e11;
  text-align: center;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.foot-mark {
  width: 1.15rem;
  height: 1.3rem;
  color: var(--sand);
}

.foot-mark svg {
  width: 100%;
  height: 100%;
}

.muted {
  margin: 0;
  color: rgba(244, 237, 227, 0.5);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-copy,
  .hero-phone {
    animation: none;
  }

  .hero-phone {
    opacity: 1;
  }
}
