/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B1120;
  --navy-light: #131B2E;
  --navy-mid: #1A2338;
  --gold: #C8973E;
  --gold-light: #D4A84E;
  --white: #FFFFFF;
  --grey: #8A96A8;
  --grey-light: #B0BAC9;
  --red: #E05252;
  --green: #4ADE80;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo { height: 48px; }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 151, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-headline {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.gold { color: var(--gold); }

.hero-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.hero-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200, 151, 62, 0.3); }

/* Hero Card */
.hero-card-wrapper { perspective: 1000px; }

.hero-card {
  background: #1C2333;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.15s ease-out;
  will-change: transform;
  font-size: 14px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
}

.card-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
}

.card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-cell {
  background: var(--navy-mid);
  padding: 16px;
}

.card-cell-label {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-cell-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.card-notes {
  background: var(--navy);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.card-notes-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--grey);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.card-notes-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--grey-light);
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-cta-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.card-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200, 151, 62, 0.3); }

/* ===== SECTION 2: PROBLEM TICKER ===== */
.problem-section {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  background: var(--navy);
  padding: 100px 0 160px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ticker-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 20px 0;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,1) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,1) 70%);
}

.ticker-row {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 16px;
  animation: tickerLeft 40s linear infinite;
}

.ticker-right .ticker-track { animation: tickerRight 35s linear infinite; }
.ticker-slow .ticker-track { animation-duration: 55s; }
.ticker-fast .ticker-track { animation-duration: 28s; }

@keyframes tickerLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tickerRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ticker-pill {
  flex-shrink: 0;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.ticker-pill.red {
  color: rgba(224, 82, 82, 0.9);
  border-color: rgba(224, 82, 82, 0.2);
}


.problem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 80px;
  background: radial-gradient(ellipse at center, var(--navy) 25%, rgba(11,17,32,0.85) 50%, transparent 75%);
}

.section-label {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label.gold { color: var(--gold); }

.problem-headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.problem-sub {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== CONTENT SECTIONS (3, 4, 5) ===== */
.content-section {
  padding: 120px 40px;
  background: var(--white);
}

.content-section.alt {
  background: #F5F7FA;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-inner.reverse { direction: ltr; }
.content-inner.reverse .content-text { order: -1; }

.content-text .section-label { color: var(--gold); }

.section-headline {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: #5A6577;
  line-height: 1.7;
}

/* Bars Animation */
.bars-container {
  background: var(--navy);
  border-radius: 16px;
  padding: 50px 40px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 350px;
  position: relative;
  overflow: hidden;
  contain: layout;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.bar {
  width: 100%;
  max-width: 40px;
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 2.4s ease-out;
}

.bars-resetting .bar {
  transition: height 0.8s ease-in !important;
  height: 0 !important;
}

.bar[data-status="cut"] { background: var(--red); }
.bar[data-status="scale"] { background: var(--gold); }

.bar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.5s;
}

.bar-label.red { color: var(--red); }
.bar-label.gold { color: var(--gold); }

.bars-animated .bar-1 { height: 60px; }
.bars-animated .bar-2 { height: 35px; }
.bars-animated .bar-3 { height: 220px; }
.bars-animated .bar-4 { height: 80px; }
.bars-animated .bar-5 { height: 180px; }
.bars-animated .bar-6 { height: 45px; }
.bars-animated .bar-7 { height: 55px; }
.bars-animated .bar-8 { height: 30px; }

.bars-animated .bar-label { opacity: 1; transition-delay: 2s; }

/* Form Animation */
.form-animation {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
}

.fake-form {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 360px;
  height: 340px;
  position: relative;
  overflow: hidden;
}

.fake-form-header {
  margin-bottom: 24px;
}

.fake-form-step {
  font-size: 12px;
  color: var(--grey);
  font-weight: 600;
  background: #F0F2F5;
  padding: 4px 12px;
  border-radius: 20px;
}

.fake-form-field { margin-bottom: 20px; }
.fake-form-field.hidden { display: none; }

.fake-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.fake-input {
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 15px;
  color: var(--navy);
  min-height: 44px;
  font-family: var(--font);
  transition: border-color 0.3s;
}

.fake-input.typing { border-color: var(--gold); }
.fake-input.reject { border-color: var(--red); color: var(--red); }

.fake-form-reject {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(224, 82, 82, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s;
}

.fake-form-reject.visible { opacity: 1; }
.fake-form-reject.hidden { display: flex; }

.reject-icon {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.reject-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* Call Card */
.call-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  max-width: 420px;
  height: 420px;
  border: 1px solid #E8ECF1;
  overflow: hidden;
}

.call-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.call-timer {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

.call-header-text strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.call-status {
  font-size: 13px;
  color: var(--grey);
}

.call-audio {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8ECF1;
}

.call-audio-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--grey);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
}

.wave-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--red);
  height: 8px;
  animation: wave 0.8s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; background: var(--navy); }
.wave-bar:nth-child(3) { animation-delay: 0.15s; }
.wave-bar:nth-child(4) { animation-delay: 0.2s; background: var(--navy); }
.wave-bar:nth-child(5) { animation-delay: 0.25s; }
.wave-bar:nth-child(6) { animation-delay: 0.3s; background: var(--navy); }
.wave-bar:nth-child(7) { animation-delay: 0.05s; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; background: var(--navy); }
.wave-bar:nth-child(9) { animation-delay: 0.12s; }
.wave-bar:nth-child(10) { animation-delay: 0.22s; background: var(--navy); }
.wave-bar:nth-child(11) { animation-delay: 0.08s; }
.wave-bar:nth-child(12) { animation-delay: 0.18s; background: var(--navy); }

@keyframes wave {
  0% { height: 4px; }
  100% { height: 24px; }
}

.call-feed {
  max-height: 220px;
  overflow: hidden;
  position: relative;
}

.call-note {
  padding: 10px 0;
  border-bottom: 1px solid #F0F2F5;
  font-size: 13px;
  color: #4A5568;
  animation: noteSlideIn 0.4s ease-out;
  line-height: 1.5;
}

.call-note.highlight {
  color: var(--green);
  font-weight: 700;
}

.call-note .note-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  vertical-align: middle;
}

.call-note .note-check {
  color: var(--green);
  font-weight: 800;
  margin-right: 6px;
}

@keyframes noteSlideIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION 6: COMPARISON ===== */
.comparison-section {
  padding: 120px 40px;
  background: var(--navy);
}

.comparison-headline {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.comparison-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
}

.comparison-divider {
  background: rgba(255,255,255,0.1);
}

.comparison-col-title {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.comparison-col-title.gold { color: var(--gold); border-color: var(--gold); }

.comparison-item {
  padding: 18px 0;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}

.old-way .comparison-item {
  color: var(--grey);
  text-decoration: line-through;
  text-decoration-color: rgba(224, 82, 82, 0.5);
}

/* ===== SECTION 7: CONTACT ===== */
.contact-section {
  padding: 120px 40px;
  background: var(--white);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-headline {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-sub {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.optional {
  font-weight: 400;
  color: var(--grey);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--navy);
  transition: border-color 0.3s;
  background: #F8FAFC;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group input::placeholder { color: #B0BAC9; }

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 151, 62, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  padding: 50px 40px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo { height: 36px; opacity: 1; }

.footer-copy {
  font-size: 13px;
  color: var(--grey);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner,
  .content-inner,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-inner.reverse .content-text { order: 0; }
  .comparison-divider { display: none; }

  .hero-headline { font-size: 36px; }
  .problem-headline { font-size: 34px; }
  .section-headline { font-size: 28px; }
  .comparison-headline { font-size: 30px; }
  .contact-headline { font-size: 28px; }

  .hero, .content-section, .comparison-section, .contact-section { padding: 80px 24px; }

  /* Nav */
  .nav-inner { padding: 0 20px; }
  .nav-logo { height: 36px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }

  /* Hero */
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-inner { gap: 40px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero-headline { font-size: 32px; }
  .hero-cta-btn { padding: 14px 32px; font-size: 14px; }

  /* Hero card */
  .hero-card { padding: 20px; }
  .card-name { font-size: 17px; }
  .card-badge { font-size: 9px; padding: 5px 10px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-cell { padding: 12px; }
  .card-cell-label { font-size: 8px; }
  .card-cell-value { font-size: 13px; }
  .card-notes { padding: 16px; }
  .card-notes-text { font-size: 11px; -webkit-line-clamp: 4; }
  .card-cta-btn { padding: 14px; font-size: 12px; }

  /* Problem section */
  .problem-section { padding: 80px 0 120px; }
  .problem-headline { font-size: 30px; }
  .problem-sub { font-size: 15px; padding: 0 20px; }
  .problem-center { padding: 40px 20px; }
  .ticker-pill { font-size: 12px; padding: 6px 14px; }

  /* Content sections */
  .content-section { padding: 60px 20px; }
  .section-label { font-size: 11px; letter-spacing: 3px; }
  .section-headline { font-size: 26px; }
  .section-desc { font-size: 14px; }

  /* Bars */
  .bars-container { height: 280px; padding: 30px 20px 30px; gap: 8px; }
  .bar { max-width: 30px; }

  /* Form animation */
  .form-animation { height: 360px; padding: 24px; }
  .fake-form { height: 310px; padding: 20px; }
  .fake-label { font-size: 13px; }
  .fake-input { font-size: 13px; padding: 10px 12px; }

  /* Call card */
  .call-card { height: 380px; padding: 20px; max-width: 100%; }

  /* Comparison */
  .comparison-section { padding: 80px 20px; }
  .comparison-grid { gap: 40px; }
  .comparison-headline { font-size: 28px; }
  .comparison-item { font-size: 14px; text-align: center; }
  .comparison-col-title { text-align: center; }

  /* Contact */
  .contact-section { padding: 80px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-headline { font-size: 26px; }

  /* Mobile: text always comes before visual */
  .content-visual { order: 2; }
  .content-text { order: 1; }

  /* Problem section - more breathing room for text over ticker */
  .problem-section { min-height: 60vh; padding: 80px 0 100px; }
  .problem-center {
    padding: 60px 20px;
    background: radial-gradient(ellipse at center, var(--navy) 30%, rgba(11,17,32,0.88) 55%, transparent 78%);
  }

  /* Footer */
  .footer { padding: 30px 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-logo { height: 28px; }
}
