@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #F4F6FA;
  --surface: #FFFFFF;
  --surface-2: #EEF1F7;
  --border: #E2E6EF;
  --text: #1A1F2E;
  --muted: #5C6578;
  --accent: #6f85b8;
  --accent-hover: #5a6aa7;
  --accent-soft: rgba(111, 133, 184, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.75rem; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 246, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, sans-serif;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #8b9dc9, #6f85b8);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 4px 12px rgba(92, 114, 168, 0.25), 0 1px 4px rgba(92, 114, 168, 0.15);
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111318;
  line-height: 1.1;
}
.logo-vox {
  background: linear-gradient(135deg, #8b9dc9, #6f85b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 1.45rem;
  background: linear-gradient(135deg, #8b9dc9, #6f85b8);
  color: #FFFFFF !important;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.93rem;
  transition: opacity 0.2s;
  border: none;
}
.btn:hover {
  opacity: 0.9;
  color: #FFFFFF !important;
}
.btn-ghost {
  background: #FFFFFF;
  border: 1.5px solid #6f85b8;
  color: #3d4f7c !important;
  font-weight: 500;
}
.btn-ghost:hover {
  background: #f0f3fa;
  border-color: #5a6aa7;
  color: #2c3a63 !important;
}

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5.5rem;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin-bottom: 1.4rem;
  max-width: 640px;
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-image {
  width: 100%;
  max-width: 440px;
  border-radius: 18px;
  box-shadow: 0 28px 56px -20px rgba(0,0,0,0.18);
  display: block;
  margin: 0 auto;
}

/* Problem section */
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.problem-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.15);
  display: block;
}

/* Sections */
.section { padding: 6.5rem 0; }
.section-header { max-width: 680px; margin-bottom: 3.25rem; }
.section-header h2 {
  font-size: clamp(2rem, 3.3vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

/* Two paths */
.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.path-card.featured {
  border-color: rgba(111, 133, 184, 0.45);
  box-shadow: 0 12px 32px -16px rgba(111, 133, 184, 0.2);
}
.path-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.path-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}
.path-card p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}
.path-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.93rem;
}
.path-card ul li {
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.path-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Secure band */
.secure-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.secure-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.secure-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1.1rem;
}
.secure-grid p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.text-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
}
.text-link:hover { text-decoration: underline; }
.secure-side-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.15);
  display: block;
}

/* Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.85rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: #D1D5E0;
  box-shadow: 0 10px 28px -12px rgba(0,0,0,0.07);
}
.feature-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}
.exhibit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.95rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }
.card p { color: var(--muted); font-size: 0.97rem; line-height: 1.65; }

/* Pricing */
.price-desc {
  color: var(--muted);
  margin: 0.75rem 0 1.25rem;
  font-size: 0.97rem;
}
.price-list {
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}
.price-list li {
  padding-left: 1.1rem;
  position: relative;
}
.price-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.featured-price {
  border-color: rgba(111, 133, 184, 0.5);
  box-shadow: 0 12px 32px -16px rgba(111, 133, 184, 0.18);
}
.featured-price h3 span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

/* Footer */
footer {
  padding: 3rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .problem-grid,
  .two-paths,
  .secure-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-image,
  .problem-image,
  .secure-side-image {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 7rem 0 4rem; }
}
/* === Premium Refinements === */
.hero-grid {
  gap: 5rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.1vw, 3.9rem);
  margin-bottom: 1.5rem;
}

.problem-grid {
  gap: 5rem;
  align-items: center;
}

.problem-image {
  border-radius: 18px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.12);
}

.path-card {
  padding: 2.4rem;
  box-shadow: 0 8px 24px -8px rgba(21, 26, 36, 0.08);
}

.path-card.featured {
  border-color: rgba(111, 133, 184, 0.4);
  box-shadow: 0 16px 40px -14px rgba(111, 133, 184, 0.22);
}

.secure-grid {
  gap: 5rem;
}

.secure-side-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
}

.card {
  padding: 2.1rem;
  box-shadow: 0 8px 24px -8px rgba(21, 26, 36, 0.08);
}

.featured-price {
  border-color: rgba(111, 133, 184, 0.45);
  box-shadow: 0 16px 40px -14px rgba(111, 133, 184, 0.2);
}

@media (max-width: 960px) {
  .hero-grid,
  .problem-grid,
  .secure-grid {
    gap: 3rem;
  }
}
/* === Minimal Professional Motion === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Card hover - premium feel */
.card,
.path-card {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover,
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(21, 26, 36, 0.12);
}

.featured-price:hover {
  box-shadow: 0 24px 48px -16px rgba(111, 133, 184, 0.25);
}

/* Button hover */
.btn {
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(111, 133, 184, 0.35);
}

/* Hero image subtle entrance */
.hero-image {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1.2s ease;
  transform: scale(0.985);
  opacity: 0.98;
}

.hero-image.visible {
  transform: scale(1);
  opacity: 1;
}