/* ============================
   BASE
   ============================ */
:root {
  --navy: #0D1B2A;
  --navy-light: #1a2d40;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-glow: rgba(245, 158, 11, 0.15);
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #E5E7EB;
  --gray-300: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --text-primary: #0D1B2A;
  --text-secondary: #6B7280;
  --border: rgba(255,255,255,0.08);
}

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

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ============================
   HERO
   ============================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--amber) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.hero-stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  max-width: 140px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Hero visual card */
.hero-visual {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  width: 280px;
  backdrop-filter: blur(12px);
}

.card-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card-name {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  flex: 1;
  font-weight: 600;
}

.card-dots {
  display: flex;
  gap: 3px;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.dot.filled { background: var(--amber); }

.card-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber);
  font-family: 'Syne', sans-serif;
}

.card-total {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

.total-val {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--white) !important;
  font-size: 1rem !important;
}

.visual-badge {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 600;
}

/* ============================
   PROOF
   ============================ */
.proof {
  background: var(--off-white);
  padding: 100px 48px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof-header {
  margin-bottom: 56px;
}

.proof-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.proof-icon {
  color: var(--amber);
  margin-bottom: 16px;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.proof-source {
  font-size: 0.68rem;
  color: var(--gray-300);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-callout {
  display: flex;
  gap: 16px;
  background: var(--navy);
  border-radius: 12px;
  padding: 24px 28px;
  align-items: flex-start;
}

.callout-bar {
  width: 4px;
  background: var(--amber);
  border-radius: 2px;
  align-self: stretch;
  flex-shrink: 0;
}

.callout-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.callout-text strong { color: var(--white); }

/* ============================
   INDUSTRIES
   ============================ */
.industries {
  background: var(--white);
  padding: 100px 48px;
}

.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.industry-card {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.08);
}

.industry-card.featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, #FFFBEB 0%, #FFFFFF 100%);
}

.ind-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.ind-icon {
  color: var(--amber);
  margin-bottom: 16px;
}

.ind-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.ind-detail {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.ind-ticket {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: 0.05em;
}

.industries-verticals-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}

.industries-verticals-note svg { flex-shrink: 0; color: var(--amber); margin-top: 1px; }

/* ============================
   PRICING MODEL
   ============================ */
.pricing-model {
  background: var(--navy);
  padding: 100px 48px;
  color: var(--white);
}

.pm-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-model .section-eyebrow { color: var(--amber); }
.pricing-model .section-title { color: var(--white); }

.pm-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.pm-col {
  padding: 36px 32px;
}

.pm-wrong { background: rgba(255,255,255,0.02); }
.pm-right { background: rgba(245,158,11,0.05); }

.pm-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wrong-label { color: rgba(255,255,255,0.3); }
.right-label { color: var(--amber); }

.pm-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.pm-wrong .pm-col-title { color: rgba(255,255,255,0.5); }
.pm-right .pm-col-title { color: var(--white); }

.pm-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.pm-wrong .pm-item { color: rgba(255,255,255,0.45); }
.pm-right .pm-item { color: rgba(255,255,255,0.8); }

.pm-x { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.pm-check { color: var(--amber); flex-shrink: 0; }

.pm-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.pm-math {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.math-card {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  padding: 28px 32px;
}

.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 10px 0;
}

.math-row + .math-row {
  border-top: 1px solid rgba(245,158,11,0.15);
  margin-top: 4px;
}

.math-row.highlight .math-result { color: var(--amber); font-size: 1.4rem; }

.math-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.math-result {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.math-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================
   CLOSING
   ============================ */
.closing {
  background: var(--off-white);
  padding: 100px 48px;
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.closing-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-focus {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.closing-vision {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
}

.vision-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.vision-item:last-child { border-bottom: none; }

.vision-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.vision-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 600;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 48px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 80px; }
  .hero-visual { position: static; transform: none; margin-top: 40px; align-items: flex-start; }
  .hero-stats-row { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .pm-comparison { grid-template-columns: 1fr; }
  .pm-divider { display: none; }
  .pm-math { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .proof, .industries, .pricing-model, .closing { padding: 60px 24px; }
  .site-footer { padding: 40px 24px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 600px) {
  .hero-stats-row { flex-wrap: wrap; }
  .hero-stat { padding: 0 16px 0 0; min-width: 120px; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .industry-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .visual-card { width: 100%; }
}
