/* === FREXOS THEME === */
:root {
  --bg: #FFF8F0;
  --bg-warm: #FFF3E6;
  --bg-dark: #1A1A1A;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --fg-light: #9C958E;
  --accent: #F5A623;
  --accent-warm: #E8816B;
  --white: #FFFFFF;
  --border: rgba(26,26,26,0.08);
  --border-dark: rgba(255,248,240,0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,248,240,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 60px;
  position: relative;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero right: abstract orb visualization */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-orb-container {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent), transparent 70%);
  opacity: 0.15;
}
.orb-1 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.orb-2 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.25; background: radial-gradient(circle at center, var(--accent-warm), transparent 70%); }
.orb-3 { width: 100px; height: 100px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.5; background: var(--accent); }
.orb-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%,-50%) scale(1.03); }
}
.agent-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  white-space: nowrap;
}
.agent-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.agent-content { top: 15%; left: 5%; }
.agent-leads { bottom: 30%; right: 0; }
.agent-social { bottom: 10%; left: 10%; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-light);
}
.scroll-arrow {
  color: var(--fg-light);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-dark);
  padding: 100px 32px;
  color: var(--white);
}
.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
}
.manifesto-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,248,240,0.85);
  margin-bottom: 64px;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,248,240,0.1);
  padding-top: 48px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,248,240,0.5);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,248,240,0.1);
  margin: 0 32px;
}

/* === SHARED SECTION STYLES === */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}

/* === FEATURES === */
.features {
  padding: 100px 32px;
  background: var(--bg);
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  padding: 48px 40px;
  position: relative;
}
.feature-card--warm { background: var(--bg-warm); }
.feature-card--dark { background: var(--bg-dark); color: var(--white); }
.feature-card--accent { background: #1E1915; color: var(--white); }
.feature-icon {
  margin-bottom: 24px;
}
.feature-card--warm .feature-title { color: var(--fg); }
.feature-card--dark .feature-title { color: var(--white); }
.feature-card--accent .feature-title { color: #FFF8F0; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.7;
}
.feature-card--dark .feature-desc,
.feature-card--accent .feature-desc { color: rgba(255,248,240,0.65); }

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 32px;
  background: var(--bg-dark);
  color: var(--white);
}
.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.how-inner .section-headline { color: var(--white); }
.steps {
  margin-top: 72px;
  display: flex;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px 40px 40px 0;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(255,248,240,0.55);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: 60px;
  right: 0;
  width: 40px;
  height: 1px;
  background: rgba(255,248,240,0.15);
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 32px;
  background: var(--bg-warm);
}
.outcomes-inner {
  max-width: 800px;
  margin: 0 auto;
}
.outcomes-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.5;
}
.outcome-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-headline em {
  font-style: italic;
  color: var(--accent);
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}
.closing-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.closing-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(245,166,35,0.08), transparent 65%);
  border-radius: 50%;
  animation: slow-pulse 6s ease-in-out infinite;
}
@keyframes slow-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  padding: 64px 32px;
  color: var(--white);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,248,240,0.4);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,248,240,0.25);
  text-align: right;
  max-width: 240px;
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .steps { flex-direction: column; }
  .step { padding: 32px 0; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-legal { text-align: left; max-width: none; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .manifesto, .features, .how-it-works, .outcomes, .closing { padding: 72px 20px; }
  .manifesto-quote { padding-left: 20px; font-size: 1.15rem; }
}