/* ============================================================
   Subpage styles — used by Pro, Privacy, Support, Terms.
   ============================================================ */

/* Pages other than the landing get a solid nav from the start. */
.oche-nav.oche-nav--page,
.oche-nav.oche-nav--page.is-scrolled {
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--ash);
  padding: 12px 0;
}
.oche-nav__links a.is-active {
  color: var(--chalk);
}
.oche-nav__links a.is-active::after {
  content: '';
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--brass);
  margin: 4px auto 0;
}

/* ─── Page header (sits below nav, holds title + intro) ─── */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-shell main { flex: 1 0 auto; }

.page-header {
  position: relative;
  padding: 140px 32px 64px;
  border-bottom: 1px solid var(--ash);
  overflow: hidden;
}
.page-header__haze {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(232, 185, 72, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.page-header__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--chalk);
  margin: 18px 0 18px;
  max-width: 880px;
  text-wrap: balance;
}
.page-header__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--chalk);
}
.page-header__sub {
  font-size: 19px;
  color: var(--smoke);
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}
.page-header__meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--dust);
  font-feature-settings: "tnum";
}

/* ─── Prose (long-form copy for legal pages) ─── */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  color: var(--chalk);
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 56px 0 14px;
  color: var(--chalk);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 18px;
  margin: 32px 0 8px;
  color: var(--chalk);
}
.prose p, .prose ul, .prose ol {
  font-size: 16px;
  line-height: 1.65;
  color: var(--smoke);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.prose ul, .prose ol {
  padding-left: 22px;
}
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--brass); }
.prose strong, .prose b { color: var(--chalk); font-weight: 600; }
.prose a { color: var(--bullseye-cyan); }
.prose code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--stout);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--ash);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--ash);
  margin: 48px 0;
}
.prose blockquote {
  border-left: 2px solid var(--brass);
  padding-left: 18px;
  margin: 20px 0;
  color: var(--chalk);
  font-style: italic;
}

/* ─── FAQ list ─── */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.faq__group {
  margin-bottom: 56px;
}
.faq__group-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--chalk);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq__group-title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brass);
  box-shadow: 0 0 12px rgba(232, 185, 72, 0.5);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  overflow: hidden;
  background: var(--stout);
}
.faq__item {
  border-bottom: 1px solid var(--ash);
}
.faq__item:last-child { border-bottom: 0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  color: var(--chalk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--dur-ui) var(--ease-oche);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 22px;
  color: var(--brass);
  flex: 0 0 auto;
  transition: transform var(--dur-ui) var(--ease-oche);
}
.faq__item[open] summary { background: var(--walnut); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { background: var(--walnut); }
.faq__body {
  padding: 4px 24px 22px;
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.6;
}
.faq__body p { margin: 0 0 12px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--bullseye-cyan); }

/* ─── Contact cards (Support) ─── */
.contact-grid {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--dur-ui) var(--ease-oche);
}
.contact-card:hover {
  background: var(--walnut);
  border-color: var(--border-2);
  transform: translateY(-1px);
}
.contact-card__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(232, 185, 72, 0.10);
  border: 1px solid rgba(232, 185, 72, 0.20);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.contact-card__t {
  font-weight: 600;
  font-size: 16px;
  color: var(--chalk);
  margin: 0;
}
.contact-card__d {
  font-size: 13px;
  color: var(--smoke);
  margin: 0;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Pro page specific ─── */
.pro-page-hero {
  position: relative;
  padding: 140px 32px 64px;
  overflow: hidden;
}
.pro-page-hero__haze {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle at 65% 35%, rgba(232,185,72,0.16) 0%, rgba(224,78,42,0.06) 35%, transparent 65%);
  pointer-events: none;
  animation: amberPulse 4s ease-in-out infinite;
}
.pro-page-hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.pro-page-hero__copy { max-width: 600px; }
.pro-page-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7.2vw, 92px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 18px 0 22px;
  color: var(--chalk);
}
.pro-page-hero__title .wordmark {
  display: block;
  font-size: 1em;
  line-height: 1;
}
.pro-page-hero__title-line {
  display: block;
  font-size: 0.5em;
  line-height: 1.1;
  font-weight: 500;
  margin-top: 14px;
  letter-spacing: -0.015em;
  color: var(--chalk);
}
.pro-page-hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--smoke);
  max-width: 540px;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.pro-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.pro-price-row__price {
  font-family: var(--font-ui);
  font-size: 40px;
  font-weight: 700;
  color: var(--chalk);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.pro-price-row__price--free {
  background: var(--oche-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pro-price-row__meta {
  color: var(--smoke);
  font-size: 14px;
  max-width: 220px;
  line-height: 1.4;
}
.pro-page-hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pro-page-hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 720px;
}
.pro-page-hero__phone {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  transform: rotate(-2deg);
}
.pro-page-hero__phone .phone {
  overflow: visible;
}
/* Long Pro screenshot — taller phone */
.phone--tall {
  position: relative;
}

@media (max-width: 980px) {
  .pro-page-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .pro-page-hero__art { min-height: 600px; }
}

/* Pro features grid (under hero) */
.pro-features {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px 96px;
}
.pro-features__head {
  margin-bottom: 40px;
  max-width: 640px;
}
.pro-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  overflow: hidden;
}
.pro-feature {
  background: var(--stout);
  padding: 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background var(--dur-ui) var(--ease-oche);
}
.pro-feature:hover { background: var(--walnut); }
.pro-feature__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(232, 185, 72, 0.10);
  border: 1px solid rgba(232, 185, 72, 0.20);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pro-feature__t {
  font-weight: 600;
  font-size: 16px;
  color: var(--chalk);
  margin: 0 0 4px;
}
.pro-feature__d {
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 980px) { .pro-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pro-features__grid { grid-template-columns: 1fr; } }

/* Final CTA strip used across subpages */
.cta-strip {
  position: relative;
  padding: 80px 32px;
  border-top: 1px solid var(--ash);
  background: linear-gradient(180deg, var(--pitch-black) 0%, #100D0A 60%, var(--pitch-black) 100%);
  text-align: center;
  overflow: hidden;
}
.cta-strip__haze {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,185,72,0.14), transparent 60%);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--chalk);
  text-wrap: balance;
}
.cta-strip__title em {
  font-style: italic;
  font-weight: 500;
}
.cta-strip__sub {
  font-size: 17px;
  color: var(--smoke);
  margin: 0 0 28px;
}
