/* Pour & Track — landing page styles
   Design tokens (from Brand Guide / design handoff):
   Off White #FDFCF8, Ivory #F3F0E9, Nude #E3DBCC, Nude Dark #C4B99A,
   Sage/Olive #848362, Olive hover #6d6c51, Obsidian #101010 (text only, never a background/colour block)
*/

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: #FDFCF8;
  color: #101010;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

::selection { background: #848362; color: #FDFCF8; }

a { color: inherit; }

img, video { max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* Header — trim secondary links on narrow screens so it never overflows */
@media (max-width: 560px) {
  .nav-secondary { display: none; }
  .btn-solid.small { padding: 10px 16px; font-size: 14px; }
}

/* Scroll-reveal --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }

/* Buttons ----------------------------------------------------------------*/
.btn-solid {
  text-decoration: none;
  background: #848362;
  color: #FDFCF8;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15.5px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background .15s ease;
}
.btn-solid:hover { background: #6d6c51; }

.btn-solid.small { padding: 10px 20px; font-size: 14.5px; white-space: nowrap; }

.btn-outline {
  text-decoration: none;
  text-align: center;
  background: transparent;
  color: #101010;
  border: 1.5px solid #848362;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s ease, color .15s ease;
  display: inline-block;
}
.btn-outline:hover { background: #848362; color: #FDFCF8; }

.btn-light {
  text-decoration: none;
  text-align: center;
  background: #FDFCF8;
  color: #101010;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s ease;
  display: inline-block;
}
.btn-light:hover { background: #F3F0E9; }

.btn-cta-light {
  text-decoration: none;
  background: #FDFCF8;
  color: #101010;
  padding: 16px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: transform .15s ease;
}
.btn-cta-light:hover { transform: scale(1.03); }

/* Feature cards ----------------------------------------------------------*/
.feature-card {
  background: #FDFCF8;
  border: 1px solid #E3DBCC;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover {
  box-shadow: 0 18px 40px -24px rgba(16,16,16,.35);
  transform: translateY(-4px);
}

/* Phone mock -------------------------------------------------------------*/
.phone-frame {
  position: relative;
  width: min(210px, 62%);
  background: #101010;
  border-radius: 32px 32px 0 0;
  padding: 7px 7px 0;
  box-shadow: 0 18px 50px -22px rgba(16,16,16,.45), 0 0 0 1px rgba(16,16,16,.05);
}
.phone-frame.large {
  width: min(320px, 78%);
  border-radius: 40px;
  padding: 9px;
  box-shadow: 0 34px 74px -30px rgba(16,16,16,.55), 0 0 0 1px rgba(16,16,16,.06);
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 13px;
  background: #101010;
  border-radius: 8px;
  z-index: 3;
}
.phone-frame.large .phone-notch { top: 11px; width: 32%; height: 18px; }

.phone-screen {
  position: relative;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  background: #F3F0E9;
  aspect-ratio: 9 / 16;
}
.phone-frame.large .phone-screen { border-radius: 31px; aspect-ratio: 9 / 19.5; }

.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  background: #F3F0E9;
  display: block;
}

/* FAQ ----------------------------------------------------------------------*/
.faq-item { border-bottom: 1px solid #C4B99A; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #101010;
}
.faq-question .q-text { font-size: 19px; font-weight: 600; }
.faq-question .q-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #848362;
  line-height: 1;
  flex: none;
}
.faq-answer {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16,16,16,.72);
  margin: 0;
  padding: 0 