/* =========================================================
   ORAQEL CODE — oraqelcode.com
   Obsidian. Gold. Ivory. Sacred.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --obsidian: #0A0612;
  --obsidian-soft: #14101F;
  --obsidian-glow: #1C1530;
  --gold: #C9A961;
  --gold-bright: #E0C079;
  --gold-deep: #8C7340;
  --ivory: #F5F0E1;
  --ivory-dim: #C9C2AE;
  --ivory-faint: rgba(245, 240, 225, 0.5);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --max: 1080px;
  --max-narrow: 720px;
}

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

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 169, 97, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(28, 21, 48, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(245, 240, 225, 0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(245, 240, 225, 0.3), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(245, 240, 225, 0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(245, 240, 225, 0.3), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(245, 240, 225, 0.4), transparent),
    radial-gradient(1px 1px at 10% 60%, rgba(245, 240, 225, 0.3), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(245, 240, 225, 0.4), transparent),
    radial-gradient(1px 1px at 70% 45%, rgba(245, 240, 225, 0.3), transparent);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

main, header, footer { position: relative; z-index: 1; }
a { color: var(--gold); }
a:hover { color: var(--gold-bright); }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ivory);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-brand .dot { color: var(--gold); margin: 0 0.15em; font-size: 0.6em; vertical-align: middle; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px 100px;
  text-align: center;
  position: relative;
}
.hero-mark {
  display: block;
  margin: 0 auto 48px;
  width: 72px;
  height: 72px;
  animation: gentleGlow 4s ease-in-out infinite;
}
@keyframes gentleGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.3)); }
  50% { filter: drop-shadow(0 0 24px rgba(201, 169, 97, 0.6)); }
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-bright); font-weight: 300; }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.5;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 56px;
  opacity: 0.6;
}

/* CTA row — App Store + Web App side by side */
.cta-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-row-stack { flex-direction: column; align-items: center; }
.cta-row-stack .web-app-btn,
.cta-row-stack .app-store-btn { min-width: 280px; }

/* App Store button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--ivory);
  color: var(--obsidian);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(201, 169, 97, 0.15);
}
.app-store-btn:hover {
  background: var(--gold-bright);
  color: var(--obsidian);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 169, 97, 0.4);
}
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.app-store-btn-small { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.app-store-btn-large { font-size: 17px; font-weight: 600; letter-spacing: 0.01em; }

/* Web App button — mirrors the App Store shape but inverted (gold border,
   transparent fill) so the App Store reads as primary and the Web App
   reads as secondary. Hover inverts to gold fill / obsidian text, which
   matches what the App Store button does on hover (gold-bright fill). */
.web-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 30px; /* -2px each side to compensate for the 2px border */
  background: transparent;
  color: var(--ivory);
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(201, 169, 97, 0.08);
}
.web-app-btn:hover {
  background: var(--gold-bright);
  color: var(--obsidian);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 169, 97, 0.4);
}
.web-app-btn:hover svg circle,
.web-app-btn:hover svg ellipse,
.web-app-btn:hover svg path { stroke: var(--obsidian); }
.web-app-btn svg { flex-shrink: 0; transition: stroke 0.3s ease; }
.web-app-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.web-app-btn-small { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.web-app-btn-large { font-size: 17px; font-weight: 600; letter-spacing: 0.01em; }

/* Web App button — primary variant for /coming-soon, where it carries
   the page on its own (App Store is unavailable there). Filled gold,
   sized a touch larger. */
.web-app-btn-primary {
  background: var(--gold-bright);
  color: var(--obsidian);
  border-color: var(--gold-bright);
  padding: 16px 36px;
  box-shadow: 0 8px 40px rgba(201, 169, 97, 0.35);
}
.web-app-btn-primary:hover {
  background: var(--ivory);
  color: var(--obsidian);
  border-color: var(--ivory);
}
.web-app-btn-primary svg circle,
.web-app-btn-primary svg ellipse,
.web-app-btn-primary svg path { stroke: var(--obsidian); }

/* Phone mockups */
.mockups {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px 100px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.phone {
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1c1530, #0a0612);
  border-radius: 40px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(201, 169, 97, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(245, 240, 225, 0.05);
  flex-shrink: 0;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, #1c1530 0%, #0a0612 70%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--obsidian);
  border-radius: 14px;
}
.phone-eyebrow {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  margin-top: 30px;
  font-weight: 500;
}
.phone-numbers { display: flex; gap: 10px; margin-bottom: 32px; }
.phone-num {
  width: 44px;
  height: 56px;
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-bright);
  font-weight: 400;
}
.phone-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory-dim);
  text-align: center;
  line-height: 1.5;
  max-width: 200px;
}
.phone-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 20px;
  opacity: 0.5;
}
.phone-cupid-card {
  width: 100%;
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  margin-bottom: 14px;
}
.phone-cupid-percent {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold-bright);
  margin-bottom: 4px;
  font-weight: 400;
}
.phone-cupid-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.phone-bar {
  width: 100%;
  height: 3px;
  background: rgba(245, 240, 225, 0.1);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}
.phone-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 2px;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 40px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 24px;
  color: var(--ivory);
}
.section-heading em { font-style: italic; color: var(--gold-bright); }
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory-dim);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 80px;
  line-height: 1.5;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}
.feature { text-align: center; padding: 0 8px; }
.feature-glyph {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-bright);
  position: relative;
}
.feature-glyph::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 50%;
}
.feature-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ivory);
}
.feature-text { font-size: 18px; line-height: 1.7; color: var(--ivory-dim); }

/* Closing */
.closing {
  text-align: center;
  padding: 100px 40px;
  max-width: var(--max-narrow);
  margin: 60px auto 0;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.closing-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: 40px;
}
.closing-quote::before,
.closing-quote::after {
  content: "—";
  display: block;
  color: var(--gold);
  margin: 0 auto 20px;
  font-style: normal;
  letter-spacing: 0.2em;
}
.closing-quote::after { margin: 20px auto 0; }

/* Coming Soon page bits */
.coming-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ivory-dim);
  margin-top: 32px;
  line-height: 1.6;
}
.coming-meta {
  margin-top: 40px;
}
.coming-meta-link {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.coming-meta-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.coming-back {
  margin-top: 48px;
}
.coming-back-link {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}
.coming-back-link:hover { color: var(--gold); }

/* Footer */
.footer {
  padding: 60px 40px 40px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer-mark {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 24px;
}
.footer-mark .dot { color: var(--gold); margin: 0 0.15em; font-size: 0.6em; vertical-align: middle; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: var(--ivory-faint);
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: var(--serif);
}

/* Legal & content pages */
.page {
  max-width: var(--max-narrow);
  margin: 40px auto 0;
  padding: 60px 40px 100px;
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  color: var(--ivory);
  line-height: 1.1;
}
.page-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory-faint);
  text-align: center;
  margin-bottom: 40px;
}
.page-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 60px;
  opacity: 0.6;
}
.page-content { font-size: 18px; line-height: 1.8; color: var(--ivory-dim); }
.page-content p { margin-bottom: 18px; }
.page-content strong { color: var(--ivory); font-weight: 500; }
.page-content em { color: var(--ivory); font-style: italic; }
.page-content h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ivory);
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.page-content h2 .num { color: var(--gold); font-style: italic; margin-right: 12px; font-weight: 400; }
.page-content ul { margin: 12px 0 22px 24px; }
.page-content li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 18px;
}
.page-content li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  top: -2px;
}
.notice {
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  border-radius: 4px;
  margin: 32px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ivory);
  line-height: 1.6;
}

/* Support */
.support-contact {
  background: rgba(201, 169, 97, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin: 40px 0 60px;
}
.support-email {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-bright);
  text-decoration: none;
  display: inline-block;
  margin: 12px 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.support-email:hover { color: var(--ivory); border-bottom-color: var(--ivory); }
.support-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.support-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ivory-dim);
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 24px 24px; flex-direction: column; gap: 18px; }
  .nav-links { gap: 24px; }
  .hero { padding: 40px 24px 80px; }
  .section { padding: 70px 24px; }
  .mockups { padding: 0 24px 80px; gap: 32px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 50px 24px 30px; }
  .footer-links { gap: 20px; }
  .page { padding: 40px 24px 80px; }
  .features { gap: 48px; }
  /* Stack the CTA pair on small screens so each button gets its full
     readable width. */
  .cta-row { flex-direction: column; align-items: center; gap: 12px; }
  .cta-row .app-store-btn,
  .cta-row .web-app-btn { width: 100%; max-width: 320px; }
}

/* =========================================================
   Refresh: nav logomark, trust strip, showcase rows, richer phone
   mockups (positions list, prose, tribes, clue tabs), who-it's-for
   strip, footer logomark, and small-feature 3-up.
   ========================================================= */

.nav-brand { display: inline-flex; align-items: center; gap: 12px; }
.nav-mark { width: 28px; height: 28px; flex-shrink: 0; }

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ivory);
}
.footer-logomark { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Trust strip — quick four-icon proof row under the hero ───── */
.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory-dim);
}
.trust-mark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-bright);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
}

/* ── Showcase rows — alternating copy + phone mockup ──────────── */
.showcase {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-left .showcase-art { order: 0; }
.showcase-left .showcase-copy { order: 1; }
.showcase-right .showcase-art { order: 1; }
.showcase-right .showcase-copy { order: 0; }
.showcase-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.showcase-heading {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 24px;
}
.showcase-heading em { font-style: italic; color: var(--gold-bright); font-weight: 300; }
.showcase-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ivory-dim);
  margin-bottom: 18px;
}
.showcase-list {
  list-style: none;
  margin-top: 22px;
  padding: 0;
}
.showcase-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ivory-dim);
}
.showcase-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 12px;
}
.showcase-list strong { color: var(--ivory); font-weight: 500; }

.showcase-art { display: flex; justify-content: center; }

/* ── Larger phone variant for the showcase rows ─────────────── */
.phone.phone-lg { width: 320px; height: 660px; }
.phone.phone-lg .phone-screen { padding: 50px 26px; }

/* Position list inside the Code mockup */
.phone-positions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.phone-pos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 10px;
  background: rgba(201, 169, 97, 0.04);
}
.phone-pos-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.phone-pos-val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-bright);
  font-weight: 400;
}
.phone-pos-master {
  border-color: rgba(224, 192, 121, 0.65);
  background: rgba(224, 192, 121, 0.08);
}

/* Birthright Blessing prose phone */
.phone-screen-prose {
  justify-content: flex-start;
  text-align: left;
}
.phone-prose {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ivory);
  margin-top: 10px;
  margin-bottom: 14px;
  text-align: left;
}
.phone-prose:first-of-type { margin-top: 24px; }
.phone-prose-gold { color: var(--gold-bright); font-style: italic; }
.phone-cta-pill {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Tribes list mockup */
.tribes-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}
.tribe-row {
  display: grid;
  grid-template-columns: 80px 1fr 38px;
  gap: 10px;
  align-items: center;
  font-family: var(--sans);
}
.tribe-name {
  font-size: 12px;
  color: var(--ivory);
  letter-spacing: 0.06em;
}
.tribe-bar {
  width: 100%;
  height: 4px;
  background: rgba(245, 240, 225, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.tribe-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 2px;
}
.tribe-pct {
  font-size: 11px;
  color: var(--gold-bright);
  font-family: var(--serif);
  text-align: right;
}
.tribe-row-primary .tribe-name { color: var(--gold-bright); font-weight: 500; }
.tribe-row-primary .tribe-pct { font-size: 13px; }
.tribe-row-trace { opacity: 0.65; }

/* Scripture clue mockup */
.clue-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 18px;
}
.clue-tab {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ivory-dim);
}
.clue-tab-active {
  border-color: var(--gold-bright);
  background: rgba(224, 192, 121, 0.1);
  color: var(--gold-bright);
}
.clue-card {
  width: 100%;
  border: 1px solid rgba(201, 169, 97, 0.25);
  background: rgba(201, 169, 97, 0.04);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.clue-ref {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.clue-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ivory);
  text-align: left;
}

/* ── Section variant — tighter top padding when chained after ── */
.section.section-tight { padding-top: 60px; padding-bottom: 70px; }

/* Three-up feature row */
.features.features-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

/* ── Who-it's-for strip ───────────────────────────────────────── */
.who-strip {
  max-width: var(--max-narrow);
  margin: 60px auto 0;
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.who-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 24px;
}
.who-heading em { font-style: italic; color: var(--gold-bright); }
.who-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Responsive — stack showcase rows on mobile ────────────── */
@media (max-width: 860px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 24px;
  }
  /* Always show the phone art FIRST on mobile so the section reads
     copy-then-art top-down regardless of left/right desktop order. */
  .showcase-left .showcase-art,
  .showcase-right .showcase-art { order: 0; }
  .showcase-left .showcase-copy,
  .showcase-right .showcase-copy { order: 1; }
  .phone.phone-lg { width: 280px; height: 580px; }
  .phone.phone-lg .phone-screen { padding: 40px 22px; }
  .who-strip { padding: 60px 24px; }
  .trust-strip { gap: 24px; padding: 16px 24px 32px; }
}
