/* ===========================================================
   Retriever Trainer — marketing site
   Palette pulled directly from the app's own brand assets:
   LaunchBackground #0D1C12, brandCream #F9EFD7, chestnut accent #B46613
   =========================================================== */

:root{
  --bg:        #0b1610;
  --bg-2:      #0d1c12;
  --bg-3:      #122417;
  --cream:     #f9efd7;
  --cream-dim: rgba(249,239,215,0.68);
  --cream-faint: rgba(249,239,215,0.42);
  --rust:      #c97a2b;
  --rust-dim:  #9c5c1e;
  --forest:    #2c6b41;
  --line:      rgba(249,239,215,0.12);
  --line-soft: rgba(249,239,215,0.07);

  /* Same system font stack the app uses (SF Pro on Mac/iOS) — no web fonts,
     so it renders as the literal same typeface as the app on Apple devices. */
  --serif: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.68,0,1);
  color-scheme: dark;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.narrow{ max-width: 760px; }
.center{ text-align: center; }

/* subtle film-grain overlay for the "velvety" depth */
.grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- type ---------- */
.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 18px;
}
.eyebrow-dark{ color: var(--rust); }

h1, h2, h3{ font-weight: 600; margin: 0; }

h1{
  font-family: var(--serif);
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--cream);
  text-wrap: balance;
}

.serif{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.lede{
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 620px;
}
.center .lede{ margin-left: auto; margin-right: auto; }

.hero-sub{
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 22px 0 34px;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), opacity .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(180deg, #d3872f, var(--rust));
  color: #1a0f04;
  box-shadow: 0 8px 24px -6px rgba(201,122,43,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 30px -6px rgba(201,122,43,0.65); }

.btn-ghost{
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(249,239,215,0.03);
}
.btn-ghost:hover{ border-color: rgba(249,239,215,0.35); background: rgba(249,239,215,0.07); }

.btn-small{ padding: 10px 20px; font-size: 13px; }
.btn-large{ padding: 17px 34px; font-size: 16px; margin-top: 6px; }

/* ---------- nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(11,22,16,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
  padding: 13px 0;
}
.nav-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark{
  width: 26px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(457%) hue-rotate(357deg) brightness(101%) contrast(96%);
}
.brand-mark.small{ width: 20px; }
.brand-word{
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.nav-links{
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--cream-dim);
}
.nav-links a{ transition: color .25s; }
.nav-links a:hover{ color: var(--cream); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.62);
}
.hero-scrim{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 15%, rgba(11,22,16,0.15), rgba(11,22,16,0.72) 60%, rgba(11,22,16,0.94) 100%),
    linear-gradient(180deg, rgba(11,22,16,0.35), rgba(11,22,16,0.55) 55%, var(--bg) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .eyebrow{ text-align: center; }
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust{
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--cream-faint);
  letter-spacing: 0.01em;
}
.hero-tags{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px 46px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream-faint);
}

/* ---------- problem ---------- */
.problem{
  padding: 130px 0 110px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.problem .wrap{ margin: 0 auto; }
.problem .eyebrow, .problem .serif, .problem .lede{ margin-left: auto; margin-right: auto; }
.problem .lede{ text-align: center; }

/* ---------- value props ---------- */
.props{
  padding: 40px 0 130px;
  background: var(--bg);
}
.props > .wrap > .serif{ max-width: 640px; }

.prop-grid{
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
}
.prop-card{
  background: var(--bg-2);
  padding: 34px 26px 30px;
  transition: background .35s var(--ease);
}
.prop-card:hover{ background: var(--bg-3); }
.prop-icon{
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--rust);
}
.prop-icon svg{ width: 100%; height: 100%; }
.prop-card h3{
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.prop-card p{
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
}

/* ---------- scroll cue ---------- */
.scroll-cue{
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-faint);
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: cue-bob 2.4s ease-in-out infinite;
  transition: color .25s, border-color .25s;
}
.scroll-cue svg{ width: 15px; height: 15px; }
.scroll-cue:hover{ color: var(--cream); border-color: rgba(249,239,215,0.35); }
@keyframes cue-bob{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- demo / phone showcase ---------- */
.showcase{
  padding: 130px 0 150px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.showcase .lede{ margin: 0 auto; }

.shot-row{
  margin-top: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Screenshot cards — sized by the image's own natural proportions, not a
   guessed device frame, so there's nothing to misalign against real content. */
.shot-card{
  width: 240px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,0.7),
    inset 0 0 0 1.5px rgba(249,239,215,0.06);
  flex-shrink: 0;
}
.shot-img{
  display: block;
  width: 100%;
  height: auto;
}
.shot-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 0.47;
  margin: 14px;
  border: 1.5px dashed var(--line);
  border-radius: 18px;
  color: var(--cream-faint);
}
.shot-placeholder svg{ width: 30px; height: 30px; }
.shot-placeholder span{
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.shot-side{
  width: 200px;
  z-index: 1;
  filter: brightness(0.8) saturate(0.9);
}
.shot-left{ transform: translateY(28px) rotate(-6deg); }
.shot-right{ transform: translateY(28px) rotate(6deg); }
.shot-center{ z-index: 2; }

/* ---------- App Store badge placeholder ---------- */
.final-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.store-badge{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border-radius: 12px;
  background: #050505;
  border: 1px solid rgba(249,239,215,0.14);
  opacity: 0.6;
  cursor: not-allowed;
  transition: opacity .3s var(--ease);
}
.store-badge:hover{ opacity: 0.85; }
.store-badge svg{ width: 22px; height: 22px; color: var(--cream); flex-shrink: 0; }
.store-text{ display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-text small{ font-size: 10px; color: var(--cream-faint); }
.store-text strong{ font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.soon-tag{
  position: absolute;
  top: -9px;
  right: -8px;
  background: var(--rust);
  color: #1a0f04;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.5);
}
.store-badge-small{
  padding: 8px 14px 8px 12px;
  gap: 8px;
}
.store-badge-small svg{ width: 18px; height: 18px; }
.store-badge-small .store-text strong{ font-size: 14px; }
.store-badge-small .store-text small{ font-size: 9px; }
.store-badge-small .soon-tag{ top: -7px; right: -6px; font-size: 8px; padding: 2px 6px; }

/* ---------- feature deep-dives ---------- */
.feature{
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.feature-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
}
.feature-reverse .feature-grid{ grid-template-columns: 0.9fr 1.1fr; }
.feature-reverse .feature-media{ order: 2; }
.feature-reverse .feature-copy{ order: 1; }

.feature-media{
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.feature-media video{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.85);
}

.feature-copy .serif{ margin-bottom: 16px; }
.feature-copy p{
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 460px;
}
.check-list{
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li{
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--cream-dim);
}
.check-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  background: radial-gradient(circle, var(--rust) 0 3px, transparent 3.5px);
}

/* ---------- report screen recording ---------- */
.feature-media-video{
  aspect-ratio: 1320 / 2868; /* matches the recording's own dimensions, so nothing is cropped or guessed */
  max-width: 320px;
  margin: 0 auto;
  background: #000;
}
.feature-media-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

/* ---------- offline / sync-status screenshot ---------- */
.feature-media-image{
  aspect-ratio: 1261 / 717; /* matches the cropped screenshot exactly, so no crop */
  background: #000;
}
.feature-media-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- FAQ ---------- */
.faq{
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.faq .eyebrow, .faq .serif{ margin-left: 0; margin-right: 0; }
.faq .serif{ margin-bottom: 48px; }

.faq-list{
  border-top: 1px solid var(--line-soft);
}
.faq-item{
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::marker{ content: ""; }

.faq-icon{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream-dim);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item[open] .faq-icon{
  transform: rotate(135deg);
  background: var(--rust);
  color: #1a0f04;
  border-color: var(--rust);
}
.faq-item summary:hover .faq-icon{ border-color: rgba(249,239,215,0.4); }

.faq-item p{
  margin: 0 0 26px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-dim);
}

/* ---------- pricing ---------- */
.pricing{
  padding: 130px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.pricing .lede{ margin: 0 auto; }

.pricing-grid{
  max-width: 760px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.price-card{
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.price-featured{
  background: linear-gradient(165deg, var(--bg-3), var(--bg));
  border-color: rgba(201,122,43,0.4);
  box-shadow: 0 30px 70px -30px rgba(201,122,43,0.25);
}
.price-tag{
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--rust);
  color: #1a0f04;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.price-name{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.price-amount{
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.price-amount span{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-faint);
  margin-left: 2px;
}
.price-desc{
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
  min-height: 62px;
}
.price-features{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}
.price-features li{
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--cream-dim);
}
.price-features li::before{
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  background: radial-gradient(circle, var(--rust) 0 3px, transparent 3.5px);
}
.btn-full{ justify-content: center; text-align: center; }
.price-note{
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--cream-faint);
}
.price-fineprint{
  text-align: center;
  margin: 30px 0 0;
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* ---------- credibility / time math ---------- */
.credibility{
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.credibility .lede{ margin: 0 auto; }
.founder-note{ margin-top: 46px; }

/* ---------- time calculator ---------- */
.calc{
  max-width: 480px;
  margin: 56px auto 48px;
  padding: 40px 40px 34px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
}

.calc-readout{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.calc-num{
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--rust);
  letter-spacing: -0.02em;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}
.calc-suffix{
  font-size: 16px;
  color: var(--cream-faint);
}

.calc-slider{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rust) 0%, var(--rust) var(--fill, 24%), rgba(249,239,215,0.12) var(--fill, 24%), rgba(249,239,215,0.12) 100%);
  outline: none;
  cursor: pointer;
  margin: 0;
}
.calc-slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--rust);
  box-shadow: 0 4px 14px -2px rgba(0,0,0,0.5);
  cursor: grab;
  transition: transform .2s var(--ease);
}
.calc-slider::-webkit-slider-thumb:hover{ transform: scale(1.1); }
.calc-slider::-webkit-slider-thumb:active{ cursor: grabbing; }
.calc-slider::-moz-range-thumb{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--rust);
  box-shadow: 0 4px 14px -2px rgba(0,0,0,0.5);
  cursor: grab;
}
.calc-slider::-moz-range-track{
  height: 6px;
  border-radius: 4px;
  background: rgba(249,239,215,0.12);
}
.calc-slider::-moz-range-progress{
  height: 6px;
  border-radius: 4px;
  background: var(--rust);
}

.calc-scale{
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-faint);
}

.calc-result{
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.calc-arrow{ display: none; }
.calc-result-num{
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.calc-result-label{
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ---------- final CTA ---------- */
.final-cta{
  padding: 150px 0 130px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201,122,43,0.10), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.final-cta .lede{ margin: 20px auto 34px; }
.fineprint{
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* ---------- business contact band ---------- */
.business-contact{
  padding: 30px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.business-contact p{
  margin: 0;
  font-size: 13.5px;
  color: var(--cream-faint);
}
.business-contact a{
  color: var(--cream-dim);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color .25s, text-decoration-color .25s;
}
.business-contact a:hover{
  color: var(--rust);
  text-decoration-color: var(--rust);
}

/* ---------- footer ---------- */
.footer{
  padding: 44px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.footer p{
  margin: 0;
  font-size: 13px;
  color: var(--cream-faint);
}

.footer-meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--cream-faint);
}
.footer-meta a{
  color: var(--cream-faint);
  transition: color .25s;
}
.footer-meta a:hover{ color: var(--cream); }
.footer-dot{ color: var(--line); }
.footer-badge{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--cream-dim);
}
.footer-badge .tx-flag{
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(249,239,215,0.18);
  flex-shrink: 0;
}

/* ---------- scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* Apple-style materialize: scale + fade, used for hero media/devices */
.reveal-scale{
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal-scale.in{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.shot-left.reveal-scale{ transform: translateY(56px) scale(0.94) rotate(-6deg); }
.shot-left.reveal-scale.in{ transform: translateY(28px) scale(1) rotate(-6deg); }
.shot-right.reveal-scale{ transform: translateY(56px) scale(0.94) rotate(6deg); }
.shot-right.reveal-scale.in{ transform: translateY(28px) scale(1) rotate(6deg); }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .prop-grid{ grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .feature-reverse .feature-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-reverse .feature-media{ order: 1; }
  .feature-reverse .feature-copy{ order: 2; }
  .nav-links{ display: none; }
  .shot-side{ width: 160px; }
  .shot-center{ width: 220px; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 380px; }
}

@media (max-width: 560px){
  .prop-grid{ grid-template-columns: 1fr; }
  .wrap{ padding: 0 22px; }
  .hero-content{ padding-top: 120px; }
  .shot-row{ margin-top: 56px; }
  .shot-side{ display: none; }
  .shot-center{ width: 240px; }
  .final-actions{ flex-direction: column; }
  .calc{ padding: 32px 24px 28px; }
  .calc-num{ font-size: 46px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal, .reveal-scale{ opacity: 1; transform: none; transition: none; }
  .btn{ transition: none; }
  .scroll-cue{ animation: none; }
}
