body {
  margin: 0;
}
/* ===== Global reset ===== */
/* Global layout sanity */
* { box-sizing: border-box; }

body{
  margin: 0;
  line-height: 1.65;
}

/* Main page container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

p {
  margin-bottom: 18px;
  max-width: 65ch;
}

section {
  padding: 40px 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Logo size control */
/* Logo size control */
.logo {
  width: 120px;
  max-height: 60px;
  height: auto;
  display: block;
}
/* ===== Header & Top Navigation ===== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Keep top nav on one line (mobile) */
.top-nav{
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex: 1;
}
/* One-line nav that scrolls on small screens */

.top-nav::-webkit-scrollbar{
  height: 6px;
}
.top-nav a{
  display: inline-block;
  white-space: nowrap;
  padding: 6px 2px;
}
.brand {
  display: flex;
  align-items: center;
}
.top-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #1f2a37;
  font-size: 15px;
}

.top-nav a:hover {
  color: #4f6ef7;
}
header {
  height: 80px;
  display: flex;
  align-items: center;
}
html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #12212f;
  background: #f4f7fb;
}

/* ===== Layout helpers ===== */


/* ===== Header & Nav ===== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 18px rgba(8, 26, 53, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4b9fff, #7a5cff);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(58, 120, 255, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.tagline {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #6b6f76;
  margin-top: 0.2rem;
  margin-bottom: 0;
  text-transform: none;
}
  
.brand-tagline {
  font-size: 0.8rem;
  color: #6b7a8c;
}

/* Top nav */
.nav {
  display: flex;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: #1c3144;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav a:hover {
  background: rgba(86, 134, 255, 0.12);
  color: #2245c7;
}

/* ===== Hero section ===== */
.hero {
  background: radial-gradient(circle at top left, #e3f3ff, #f6f4ff 55%, #f4f7fb);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  padding-block: 2.6rem;
}

.hero-text h1 {
  font-size: 2.1rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #111827;
}

.hero-text p {
  color: #4b5563;
  max-width: 32rem;
}

/* Call-to-action buttons */

.hero-actions {
  margin-top: 2rem;
}

/* Trust line under CTA */
.hero-trust {
  margin-top: 1.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(43, 58, 103, 0.15);
  background: rgba(43, 58, 103, 0.04);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b3a67;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #4764ff, #7b4dff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(57, 90, 255, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(57, 90, 255, 0.45);
}
/* Primary CTA */
.btn.primary {
  background: #5a67ff;
  color: #fff;
  box-shadow: 0 14px 30px rgba(90, 103, 255, 0.25);
}

/* Ghost/secondary CTA */
.btn.ghost {
  background: transparent;
  color: #2b3a67;

  /* THIS is the key fix */
  border: 1px solid rgba(43, 58, 103, 0.45);

  box-shadow: 0 8px 18px rgba(43, 58, 103, 0.15);
}



/* Optional: make the ghost feel like a button on tap */
.btn.ghost:hover {
  background: rgba(90, 103, 255, 0.08);
}
@media (max-width: 600px) {
  .tagline {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
}
/* Force logo image size everywhere */
header img {
  max-height: 48px;
  width: auto;
}
/* ===== Hero polish (mobile-first) ===== */
.hero {
  padding: 56px 20px 34px;
}

.hero h1 {
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 0 14px;
}

.hero .subhead,
.hero h2 {
  max-width: 34ch;
  line-height: 1.25;
  margin: 0 0 18px;
}

.hero p {
  max-width: 52ch;
  line-height: 1.6;
  margin: 0 0 26px;
}

/* Buttons: clean stack on mobile */
.hero .cta,
.hero .hero-buttons,
.hero .button-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* Slightly larger screens: tighten and align */
@media (min-width: 700px) {
  .hero { padding: 72px 20px 44px; }
  .hero h1 { max-width: 22ch; }
  .hero .cta,
  .hero .hero-buttons,
  .hero .button-row {
    flex-direction: row;
    align-items: center;
  }
}
.page {
  padding: 24px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.page h1 {
  margin-top: 8px;
}
.clean-list {
  margin: 12px 0 18px;
  padding-left: 18px;
}
.clean-list li {
  margin: 8px 0;
}

.btn.ghost {
  background: rgba(255,