@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFFFF;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #2563EB; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ─── Colors & Variables ─── */
:root {
  --navy: #0A1628;
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --bg: #FFFFFF;
  --text: #111827;
  --text-secondary: #6B7280;
  --border: #E5E7EB;
  --bg-soft: #F9FAFB;
  --radius-card: 8px;
  --radius-btn: 6px;
  --max-w: 1100px;
}

/* ─── Container ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo img { width: 28px; height: 28px; flex-shrink: 0; }

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.nav-links a:hover { color: var(--blue); text-decoration: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
}

.btn-primary:hover {
  background: var(--blue-hover);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 12px 24px;
  font-size: 15px;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
  text-decoration: none;
  color: var(--navy);
}

/* ─── Hero ─── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero p.hero-sub {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Logo Strip ─── */
.logo-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.logo-strip-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.logo-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-strip-row span {
  font-size: 17px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: -0.01em;
}

/* ─── Social Proof ─── */
.social-proof {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-stat {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
}

.proof-stat:last-child { border-right: none; }

.proof-stat .number {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-stat .label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 500;
}

/* ─── Section Headings ─── */
.section-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.55;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 100px 0;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.hiw-step {
  display: flex;
  flex-direction: column;
}

.hiw-number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hiw-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Problem Block ─── */
.problem-block {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
}

.problem-block .section-tag { color: #93C5FD; }
.problem-block .section-heading { color: #fff; }
.problem-block .section-sub { color: #94A3B8; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.problem-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.problem-item .cost {
  font-size: 36px;
  font-weight: 800;
  color: #F87171;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.problem-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.problem-item p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
}

/* ─── Use Cases ─── */
.use-cases {
  padding: 100px 0;
  background: var(--bg-soft);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.use-case-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

.use-case-icon {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Pricing ─── */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  position: relative;
  background: #fff;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.07), 0 8px 32px rgba(0,0,0,0.08);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  vertical-align: super;
  margin-right: 2px;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.55;
  min-height: 48px;
}

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

.pricing-features li {
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── CTA Band ─── */
.cta-band {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  color: #fff;
}

.cta-band h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-band p {
  font-size: 18px;
  opacity: 0.75;
  max-width: 480px;
  margin: 0 auto 40px;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
}

.btn-white:hover {
  background: #F0F4FF;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ─── Blog ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.blog-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.blog-card-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* ─── Article / Prose ─── */
.article-header {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.article-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 14px;
  color: var(--text-secondary);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.prose h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.prose h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: #1F2937;
  margin-bottom: 20px;
}

.prose ul, .prose ol {
  margin: 0 0 20px 24px;
}

.prose li {
  font-size: 17px;
  line-height: 1.75;
  color: #1F2937;
  margin-bottom: 8px;
}

.prose strong { font-weight: 700; color: var(--navy); }

.prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 12px 24px;
  margin: 32px 0;
  background: var(--bg-soft);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.prose blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}

.prose .callout {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin: 32px 0;
}

.prose .callout p { margin: 0; color: #1E40AF; }

/* ─── Form ─── */
.form-section {
  padding: 80px 0 100px;
  max-width: 580px;
  margin: 0 auto;
}

.form-section h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.form-section .form-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.55;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.form-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* ─── Page Hero (smaller) ─── */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── About ─── */
.about-section {
  padding: 80px 0;
}

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

.about-grid h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-grid p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 60px;
}

.about-values h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

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

.value-card {
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Legal Prose ─── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-content h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-content .legal-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #1F2937;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 16px 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: #1F2937;
  margin-bottom: 6px;
}

/* ─── Press / Careers ─── */
.press-section {
  padding: 80px 0 100px;
}

.press-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.press-section p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 16px;
}

.press-section a { color: var(--blue); }

.boilerplate-box {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #1F2937;
  max-width: 640px;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-logo img { filter: brightness(0) invert(1); }

.footer-tagline {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 15px;
  color: #CBD5E1;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748B;
  text-align: center;
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
  padding: 16px 24px;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-inner p {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.5;
}

.cookie-inner a { color: #93C5FD; }

/* ─── Success message ─── */
.success-msg {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-card);
  padding: 20px 24px;
  font-size: 16px;
  color: #065F46;
  margin-top: 24px;
  display: none;
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

.section-intro {
  max-width: 600px;
}

.section-intro-center {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero h1 { font-size: 42px; }
  .hiw-grid, .problem-grid, .pricing-grid, .use-cases-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; max-width: 480px; }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .section-heading { font-size: 32px; }
  .logo-strip-row { gap: 28px; }
}

@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 36px; }
  .hero p.hero-sub { font-size: 17px; }
  .page-hero h1 { font-size: 36px; }
  .article-header h1 { font-size: 32px; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .proof-stat { min-width: 50%; padding: 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .proof-stat:last-child { border-bottom: none; }
  .social-proof-grid { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-band h2 { font-size: 32px; }
  .pricing-card { padding: 32px 24px; }
  .legal-content { padding: 40px 0 60px; }
  .logo-strip-row { gap: 20px; }
  .logo-strip-row span { font-size: 15px; }
}
