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

:root {
  --purple: #6C63FF;
  --purple-light: #A78BFA;
  --dark: #1A1A2E;
  --darker: #14142A;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-dim: rgba(255,255,255,0.4);
  --border-light: rgba(167,139,250,0.2);
  --border-purple: rgba(167,139,250,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
}

/* NAV */
.nav {
  background: var(--dark);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid var(--border-light);
}

.logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--white);
  font-family: 'DM Mono', monospace;
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--purple-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  background: var(--dark);
  padding: 100px 40px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(167,139,250,0.12);
  color: var(--purple-light);
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 0.5px solid var(--border-purple);
  font-family: 'DM Mono', monospace;
}

.hero h1 {
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  max-width: 620px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--purple-light);
  font-style: italic;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 0.5px solid rgba(255,255,255,0.25);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
}

/* STATS */
.stats {
  background: var(--darker);
  padding: 36px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  border-top: 0.5px solid var(--border-light);
  border-bottom: 0.5px solid var(--border-light);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 30px;
  font-weight: 500;
  color: var(--purple-light);
  font-family: 'DM Mono', monospace;
}

.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: 1.5px;
}

/* SECTIONS */
.section {
  background: #ffffff;
  padding: 80px 40px;
}

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

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--purple);
  margin-bottom: 14px;
  font-family: 'DM Mono', monospace;
}

.section h2 {
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section > p {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  line-height: 1.75;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.card {
  background: #fafafa;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--purple-light);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(108,99,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--purple);
}

.card h3 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* PROCESS */
.process {
  background: #f8f8f8;
  padding: 80px 40px;
}

.process h2 {
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 48px;
  margin-top: 14px;
  letter-spacing: -0.3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 0.5px solid #e5e5e5;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'DM Mono', monospace;
}

.step h4 {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.step p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  background: var(--dark);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-section p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* FOOTER */
.footer {
  background: var(--darker);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border-light);
}

.footer p {
  font-size: 12px;
  color: var(--text-dim);
}

.farseer-badge {
  font-size: 11px;
  color: rgba(167,139,250,0.7);
  border: 0.5px solid var(--border-purple);
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 32px; }
  .stats { gap: 30px; padding: 28px 20px; flex-wrap: wrap; }
  .section { padding: 50px 20px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .process { padding: 50px 20px; }
  .cta-section { padding: 60px 20px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
}

/* PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 80px 40px 70px;
}

.page-hero-inner {
  max-width: 680px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 14px 0 18px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ABOUT */
.about-founder {
  background: #fff;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 500;
  color: var(--purple-light);
  font-family: 'DM Mono', monospace;
  margin-bottom: 20px;
}

.founder-card {
  padding: 20px;
  background: #fafafa;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-md);
}

.founder-name {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.founder-title {
  font-size: 13px;
  color: #888;
  margin: 4px 0 12px;
}

.founder-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.founder-links a {
  font-size: 13px;
  color: var(--purple);
  text-decoration: none;
}

.about-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 18px !important;
  color: #1a1a1a !important;
  font-weight: 400;
}

/* TIMELINE */
.timeline-section {
  background: #f8f8f8;
  padding: 80px 40px;
}

.timeline-inner {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-inner h2 {
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 14px 0 48px;
  letter-spacing: -0.3px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 0.5px solid #e5e5e5;
}

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

.timeline-year {
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--purple);
  padding-top: 4px;
  letter-spacing: 0.5px;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* VALUES */
.values-section {
  background: #fff;
  padding: 80px 40px;
}

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

.values-inner h2 {
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 14px 0 48px;
  letter-spacing: -0.3px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-item {
  padding: 28px;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-lg);
}

.value-num {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--purple);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1100px;
}

.pricing-card {
  background: #fafafa;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.pricing-featured {
  border: 2px solid var(--purple);
  background: #fff;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 26px;
  font-weight: 500;
  color: var(--purple);
  font-family: 'DM Mono', monospace;
  margin-bottom: 4px;
}

.pricing-duration {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid #e5e5e5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 13px;
  color: #555;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 11px;
}

/* ADDONS */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.addon-card {
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 28px;
}

.addon-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.addon-price {
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  color: var(--purple);
  margin-bottom: 12px;
}

.addon-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* FAQ */
.faq-section {
  background: #fff;
  padding: 80px 40px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 14px 0 40px;
  letter-spacing: -0.3px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 0.5px solid #e5e5e5;
}

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

.faq-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* CASE STUDIES */
.cs-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}

.cs-card {
  background: #fafafa;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.cs-coming-soon {
  opacity: 0.7;
}

.cs-tag {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--purple);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.cs-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cs-summary {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}

.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--dark);
  border-radius: var(--radius-md);
}

.cs-metric {
  text-align: center;
}

.cs-metric-num {
  font-size: 24px;
  font-weight: 500;
  color: var(--purple-light);
  font-family: 'DM Mono', monospace;
}

.cs-metric-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4;
}

.cs-challenge, .cs-solution {
  margin-bottom: 20px;
}

.cs-challenge h5, .cs-solution h5 {
  font-size: 11px;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
}

.cs-challenge p, .cs-solution p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.cs-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid var(--purple);
  background: #f0effe;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: #333;
  font-style: italic;
  line-height: 1.65;
}

.cs-quote cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* CONTACT */
.contact-section {
  background: #fff;
  padding: 80px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 0.5px solid #d5d5d5;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}

.form-group textarea {
  resize: vertical;
}

.contact-info-block {
  background: #fafafa;
  border: 0.5px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-block h3 {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.contact-detail {
  padding: 12px 0;
  border-bottom: 0.5px solid #eee;
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #aaa;
  font-family: 'DM Mono', monospace;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.contact-detail a {
  color: var(--purple);
}

.contact-expect {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-expect h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.expect-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.expect-item:last-child {
  margin-bottom: 0;
}

.expect-num {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
}

.expect-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.expect-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section padding override */
.section {
  padding: 80px 40px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 50px 20px; }
  .page-hero h1 { font-size: 28px; }
  .cs-grid { padding: 40px 20px; }
  .contact-section { padding: 50px 20px; }
  .faq-section { padding: 50px 20px; }
  .values-section { padding: 50px 20px; }
  .about-founder { padding: 50px 20px; }
  .timeline-section { padding: 50px 20px; }
}
