:root {
  --navy: #101f43;
  --navy-2: #07142f;
  --blue: #1465f3;
  --blue-2: #0b4ed7;
  --text: #182238;
  --muted: #657087;
  --line: #e7eaf0;
  --surface: #f7f9fc;
  --white: #ffffff;
  --max: 1160px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(231,234,240,.85);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { display: block; width: 165px; height: auto; }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav a { color: #4f5b70; font-size: .92rem; font-weight: 600; transition: color .2s ease; }
.nav a:hover { color: var(--blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 42%, rgba(20,101,243,.13), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f8faff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
  padding: 88px 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
}
.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 750;
  font-size: .92rem;
}
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 30px rgba(20,101,243,.18); }
.button-secondary { border: 1px solid var(--line); background: #fff; color: var(--navy); }

.hero-mark { min-height: 420px; position: relative; display: grid; place-items: center; }
.glow {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,101,243,.18), rgba(20,101,243,0) 68%);
}
.phone {
  position: absolute;
  border: 9px solid var(--navy);
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(16,31,67,.18);
}
.phone-back {
  width: 220px;
  height: 390px;
  transform: translate(68px, -16px) rotate(13deg);
  opacity: .18;
}
.phone-front {
  width: 238px;
  height: 420px;
  transform: translate(-20px, 10px) rotate(-8deg);
}
.phone-front::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 17px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: var(--navy);
}
.phone-screen {
  position: absolute;
  inset: 40px 14px 14px;
  padding: 32px 18px 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, #f8fbff, #e9f1ff);
}
.phone-screen > span {
  display: block;
  width: 72%;
  height: 10px;
  margin-bottom: 9px;
  border-radius: 99px;
  background: #c9d7f2;
}
.screen-card {
  height: 92px;
  margin-top: 28px;
  border-radius: 17px;
  background: linear-gradient(135deg, #0c4ed5, #2181ff);
}
.screen-card.short { height: 55px; margin-top: 14px; opacity: .75; }

.section { padding: 110px 0; }
.section-light { background: var(--surface); }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.section h2, .statement h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-copy { color: var(--muted); font-size: 1.05rem; }
.section-copy p:first-child { margin-top: 0; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); margin-top: 20px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(16,31,67,.08); }
.icon {
  width: 45px; height: 45px; display: grid; place-items: center;
  border-radius: 12px; background: #eaf1ff; color: var(--blue);
  font-size: .76rem; font-weight: 800;
}
.card h3 { margin: 30px 0 12px; color: var(--navy); font-size: 1.22rem; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }

.section-dark { background: var(--navy); color: #fff; }
.section-heading.light h2 { color: #fff; }
.section-heading.light .eyebrow { color: #72a5ff; }
.section-heading.light > p:last-child { color: #aeb9cd; }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-item { padding: 30px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-item > span { color: #72a5ff; font-size: .78rem; font-weight: 800; }
.process-item h3 { margin: 28px 0 8px; font-size: 1.25rem; }
.process-item p { margin: 0; color: #aeb9cd; font-size: .94rem; }

.statement { text-align: center; }
.statement-inner { max-width: 820px; }
.statement h2 { margin-top: 8px; }
.statement p:last-child { color: var(--muted); font-size: 1.05rem; }

.contact-section { padding-top: 80px; }
.contact-box {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 70px;
  align-items: center;
  padding: 55px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f1f6ff, #f8faff);
  border: 1px solid #e0e8f7;
}
.contact-box h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.contact-box p { color: var(--muted); }
.contact-label { color: var(--navy) !important; font-weight: 800; margin-bottom: 4px; }
.contact-note { padding-left: 36px; border-left: 1px solid #d6dfef; }
.email-placeholder { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 750; }
.contact-detail { margin: 8px 0 0 !important; font-size: .9rem; }
.contact-detail a { color: var(--navy); font-weight: 700; }

.footer { padding: 45px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand img { width: 140px; display: block; }
.footer-brand p, .footer-meta p { margin: 8px 0 0; color: var(--muted); font-size: .8rem; }
.footer-meta { text-align: right; max-width: 560px; }
.legal-note { font-size: .74rem !important; }

.legal-page { background: var(--surface); }
.legal-main { padding: 80px 0 110px; }
.legal-container {
  max-width: 850px;
  padding: 58px 65px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.legal-container h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.legal-updated { color: var(--muted); margin: 14px 0 42px; font-size: .9rem; }
.legal-intro { padding: 22px 24px; border-left: 3px solid var(--blue); background: #f7faff; margin-bottom: 46px; }
.legal-intro p { margin: 0 0 12px; color: #46536a; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-container h2 { margin: 38px 0 12px; color: var(--navy); font-size: 1.3rem; }
.legal-container p, .legal-container li { color: #59667c; font-size: .95rem; }
.legal-container ul { padding-left: 22px; }
.legal-container li { margin: 8px 0; }
.legal-footer { margin-top: 55px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--blue); font-weight: 750; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .split, .contact-box { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-mark { min-height: 430px; margin-top: -10px; }
  .cards, .process { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .contact-note { padding-left: 0; border-left: 0; border-top: 1px solid #d6dfef; padding-top: 28px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}
@media (max-width: 600px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .nav-wrap { height: 68px; }
  .brand img { width: 145px; }
  .nav-cta { min-height: 38px; padding: 0 15px; font-size: .8rem; }
  .hero-grid { padding: 68px 0 55px; }
  .hero h1 { font-size: 3rem; }
  .hero-mark { transform: scale(.82); margin: -20px 0 -30px; }
  .section { padding: 80px 0; }
  .split { gap: 35px; }
  .contact-box { padding: 34px 25px; }
  .legal-main { padding: 35px 0 70px; }
  .legal-container { padding: 34px 24px; border-radius: 18px; }
}
