/* =============================================
   InTouch — Design System
   Dark luxury: Black + Gold + White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
  /* Primary */
  --black:      #0D0D0D;
  --black-mid:  #111111;
  --black-soft: #1A1A1A;
  --gold:       #D4A574;
  --white:      #FFFFFF;
  --gray-100:   #F5F5F5;
  --gray:       #d1d1d1;
  --gray-dark:  #737373;
  --border:     rgba(212, 165, 116, 0.25);

  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'IBM Plex Serif', Georgia, serif;

  --max-w: 1000px;
  --max-w-narrow: 680px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Utilities ---- */
.gold      { color: var(--gold); }
.gold-link { color: var(--gold); text-decoration: none; transition: opacity .2s; }
.gold-link:hover { opacity: .7; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #1a130d 0%, var(--black) 65%);
  padding: 4rem 2rem 6rem;
  position: relative;
}

.hero-content { max-width: 720px; }

.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.wordmark-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}
.wordmark-sm { margin-bottom: 1rem; }
.wordmark-sm .wordmark-text { font-size: clamp(1.5rem, 3vw, 2rem); }

/* ---- ENDCARD SUBTITLE ---- */
.endcard {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}

/* Grid lines and vignette removed for seamless look */

/* Glow removed for seamless look */
.endcard-glow {
  display: none;
}

.endcard-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

/* "Stop networking in circles." */
.text-primary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #FFF;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 7px;
}

/* "Find the path out." */
.text-secondary {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 19px;
  color: #444;
}

/* "path" breaks the italic — upright and medium weight */
.text-secondary .word-path {
  font-style: normal;
  font-weight: 500;
}

/* Word highlight animation */
.w {
  display: inline;
  transition: color 0.12s ease, text-shadow 0.12s ease, opacity 0.12s ease;
}

/* Starting state — nearly invisible */
.w.future {
  color: rgba(255,255,255,0.06) !important;
}

/* Active state — gold with glow */
.w.active {
  color: #D4A574 !important;
  text-shadow: 0 0 28px rgba(212,165,116,0.55);
}

/* Past state — settles to the element's natural color */
.w.past {
  color: inherit;
}

/* ---- Google Auth Button ---- */
.google-btn {
  display: inline-flex;
  align-items: center;
  background-color: #131314;
  border: 1px solid #8E918F;
  border-radius: 20px;
  color: #E3E3E3;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  padding: 0 12px 0 0;
  cursor: pointer;
  transition: background-color .2s;
}
.google-btn:hover { background-color: #1b1b1c; }

.google-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 4px 10px 4px 12px;
  flex-shrink: 0;
}

.google-icon { width: 18px; height: 18px; }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .15em;
  opacity: .5;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

/* ---- SECTIONS ---- */
.section       { padding: 7rem 0; background: var(--black); }
.section-dark  { background: var(--black-mid); }
.cta-section   { padding: 7rem 0; background: var(--black); border-top: 1px solid var(--border); }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.body-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* ---- STATS TABLE ---- */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
  font-size: .95rem;
}
.stats-table thead tr {
  background: var(--gold);
}
.stats-table thead th {
  padding: .9rem 1.25rem;
  text-align: left;
  color: var(--black);
  font-weight: 600;
  letter-spacing: .03em;
}
.stats-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.stats-table tbody tr:hover { background: rgba(212,165,116,.05); }
.stats-table td {
  padding: .9rem 1.25rem;
  color: var(--gray);
}
.stats-table .highlight-row td { color: var(--white); border-top: 1px solid var(--gold); }

/* ---- STATS GRID ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.stat-card {
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--black-soft);
  transition: border-color .3s, transform .3s;
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .75rem;
}
.stat-desc {
  font-size: .875rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* ---- TWO-COL PILLARS ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

.pillar { border-left: 2px solid var(--gold); padding-left: 1.5rem; }
.pillar-num  { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: .25rem; }
.pillar-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.pillar-text  { font-size: .9rem; color: var(--gray-dark); }

/* ---- ROLEX QUOTE ---- */
.rolex-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gray);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.quote-attribution {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold);
}

/* ---- CORE MESSAGE ---- */
.core-message-card {
  border: 1px solid var(--gold);
  padding: 3rem 2.5rem;
  text-align: center;
  background: rgba(212,165,116,.04);
}
.core-message-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.7;
  color: var(--gray);
}

/* ---- OBJECTIONS ---- */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.objection-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
  background: var(--black-soft);
  transition: border-color .3s;
}
.objection-card:hover { border-color: var(--gold); }
.objection-q {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.objection-a { font-size: .9rem; color: var(--gray-dark); line-height: 1.6; }

/* ---- FOOTER ---- */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: .8rem;
  color: var(--gray-dark);
  border-top: 1px solid var(--border);
}
.footer-links {
  margin-bottom: .75rem;
}
.footer-links .gold-link {
  font-size: .8rem;
}
.footer-sep {
  margin: 0 .5rem;
  color: var(--gray-dark);
  opacity: .4;
}

/* ---- LEGAL PAGES ---- */
.legal-page {
  min-height: 100vh;
  background: var(--black);
  padding-bottom: 2rem;
}
.legal-header {
  padding: 2rem 2rem 0;
  text-align: center;
}
.legal-wordmark {
  text-decoration: none;
  display: inline-flex;
}
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
.legal-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.legal-effective {
  font-size: .85rem;
  color: var(--gray-dark);
  margin-bottom: 2.5rem;
}
.legal-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: .01em;
}
.legal-subheading {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}
.legal-text {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.legal-list li {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: .35rem;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .75em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ---- HERO SUBHEADLINE & CTA SECONDARY ---- */
.hero-subheadline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero-cta-secondary {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .05em;
  margin-top: 1rem;
  opacity: .8;
}

/* ---- HERO STAT (THE PROOF) ---- */
.hero-stat {
  margin-bottom: 3rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: .75rem;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.supporting-stats {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.supporting-stat {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.supporting-stat:last-child {
  border-bottom: none;
}

/* ---- THREE-COL PILLARS ---- */
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) { .three-col { grid-template-columns: 1fr; } }

/* ---- TESTIMONIAL BLOCK ---- */
.testimonial-block {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  background: rgba(212,165,116,.04);
  border-radius: 4px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ---- HOW IT WORKS STEPS ---- */
.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 600px) { .step-grid { grid-template-columns: 1fr; } }

.step-card {
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  background: var(--black-soft);
  transition: border-color .3s, transform .3s;
}
.step-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}

.step-text {
  font-size: .9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ---- FOOTER SECONDARY TAGLINE ---- */
.footer-tagline-secondary {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

/* ---- VIDEO SECTION ---- */
.video-wrapper {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
  background: var(--black-soft);
}

.video-wrapper video {
  width: 100%;
  height: auto;
}

/* Wide video: visible on desktop, hidden on mobile */
.video-wrapper .video-wide  { display: block; }
.video-wrapper .video-portrait { display: none; }

@media (max-width: 768px) {
  .video-wrapper .video-wide    { display: none; }
  .video-wrapper .video-portrait { display: block; }
}

/* Placeholder overlay — visible until a real video loads */
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: var(--black-soft);
  border: 1px dashed var(--gold);
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .video-placeholder { aspect-ratio: 9 / 16; }
}

.video-placeholder-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 1rem;
}

.video-placeholder-text {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* ---- PROOF INTRO (line + label) ---- */
.proof-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-bottom: 3rem;
}

.proof-intro .scroll-arrow {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .google-btn { justify-content: center; width: 100%; }
}
