@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #073b7a;
  --navy-900: #052653;
  --orange: #dd6f22;
  --orange-100: #fff3ea;
  --green: #28b463;
  --ink: #182235;
  --muted: #667085;
  --line: #e7edf5;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 59, 122, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;

  --orange-grad: linear-gradient(135deg, #ff7e25 0%, #dd6f22 100%);
  --navy-grad: linear-gradient(135deg, #094fa8 0%, #052653 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .logo, .btn, .eyebrow, .mock-pill, .person, .tag {
  font-family: 'Outfit', sans-serif;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: radial-gradient(circle at top left, #052653, #031733);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 550;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  align-items: center;
}

.topbar a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(231, 237, 245, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-weight: 600;
  font-size: 14.5px;
}

.menu a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange-grad);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(221, 111, 34, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(221, 111, 34, 0.32);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--navy-grad);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(7, 59, 122, 0.15);
}

.btn-secondary:hover {
  box-shadow: 0 14px 30px rgba(7, 59, 122, 0.26);
  filter: brightness(1.08);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.02);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(7, 59, 122, 0.02);
}

.btn-soft {
  background: var(--orange-100);
  color: var(--orange);
  border-color: rgba(221, 111, 34, 0.15);
}

.btn-soft:hover {
  background: #ffdcc4;
  border-color: rgba(221, 111, 34, 0.3);
}

.mobile-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
  background: #ffffff;
}


.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(221, 111, 34, 0.09) 0%, rgba(221, 111, 34, 0) 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(7, 59, 122, 0.07) 0%, rgba(7, 59, 122, 0) 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 59, 122, 0.06);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 22px;
  border: 1px solid rgba(7, 59, 122, 0.08);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--navy-900);
  font-weight: 800;
}

.accent {
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: #475467;
  max-width: 710px;
  margin-bottom: 34px;
  line-height: 1.6;
}

.ai-entry {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 720px;
}

.ai-entry label {
  display: block;
  color: var(--navy-900);
  font-weight: 800;
  margin: 4px 0 12px 4px;
  font-size: 15px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: #475467;
  font-size: 13.5px;
  font-weight: 600;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

.proof-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(40, 180, 99, 0.6);
}


.product-mock {
  position: relative;
  background: linear-gradient(145deg, #0b2548, #051630);
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 35px 75px rgba(7, 59, 122, 0.22);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-window {
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.traffic { display: flex; gap: 6px; }
.traffic i { width: 10px; height: 10px; display: block; border-radius: 999px; background: #cbd5e1; }

.mock-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 380px;
}

.mock-sidebar {
  padding: 20px;
  border-right: 1px solid var(--line);
  background: #fbfcff;
}


.mock-pill {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  margin-bottom: 12px;
  font-weight: 750;
  color: var(--navy-900);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 13.5px;
}

.mock-pill:hover {
  background: #f5f8ff;
  border-color: rgba(7, 59, 122, 0.25);
  transform: translateX(3px);
}

.mock-pill.active {
  border-color: rgba(221, 111, 34, 0.35);
  background: var(--orange-100);
  color: var(--orange);
  box-shadow: 0 4px 15px rgba(221, 111, 34, 0.06);
}

.mock-main {
  padding: 20px;
  transition: opacity 0.15s ease-in-out;
}


.chat-bubble {
  padding: 14px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}

.chat-bubble.user {
  background: #eef4ff;
  margin-left: 32px;
  border-bottom-right-radius: 4px;
  color: var(--navy-900);
  font-weight: 550;
}

.chat-bubble.ai {
  background: #f6f7f9;
  margin-right: 18px;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}

.risk-card {
  border: 1px solid rgba(221, 111, 34, 0.15);
  border-radius: 18px;
  padding: 16px;
  background: #fffdfb;
  margin-top: 14px;
  box-shadow: 0 4px 15px rgba(221, 111, 34, 0.04);
  font-size: 13px;
  line-height: 1.45;
}

.risk-card strong { color: var(--orange); }

.section { padding: 88px 0; }

.section.alt { background: var(--bg); }

.section-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 16px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}


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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 59, 122, 0.07);
  border-color: rgba(7, 59, 122, 0.15);
}

.card h3 {
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  font-size: 22px;
  background: var(--orange-100);
  color: var(--orange);
  margin-bottom: 22px;
  box-shadow: inset 0 0 12px rgba(221, 111, 34, 0.05);
}

.card .btn { margin-top: 14px; width: 100%; }

.audience-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.audience-copy {
  background: var(--navy-grad);
  color: var(--white);
  border-radius: 32px;
  padding: 40px;
  position: sticky;
  top: 104px;
  box-shadow: 0 24px 50px rgba(7, 59, 122, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.audience-copy h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 800;
}

.audience-copy p { color: rgba(255,255,255,0.82); font-size: 16.5px; line-height: 1.65; }

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(7, 59, 122, 0.05);
  border-color: rgba(7, 59, 122, 0.12);
}

.mini-card h3 {
  color: var(--navy-900);
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 800;
}

.mini-card p { color: var(--muted); margin-bottom: 0; font-size: 14px; line-height: 1.55; }

.flow-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flow {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.03);
}

.flow h3 { color: var(--navy-900); font-size: 21px; font-weight: 800; margin-bottom: 4px; }

.steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #475467;
  font-weight: 600;
  font-size: 14px;
}

.steps li::before {
  content: counter(step);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--navy-grad);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(7, 59, 122, 0.2);
}


.whatif {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  background: radial-gradient(circle at top left, #0b2c5c 0%, #051630 100%);
  color: var(--white);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(5, 22, 48, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.whatif h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 800;
}

.whatif p { color: rgba(255,255,255,0.84); font-size: 17px; line-height: 1.65; }

.questions {
  display: grid;
  gap: 12px;
}

.question {
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  transition: all 0.25s ease;
  font-size: 14.5px;
  cursor: default;
}

.question:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(5px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  font-weight: 800;
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.03);
  font-size: 15px;
  transition: all 0.25s ease;
}

.trust-item:hover {
  border-color: rgba(7, 59, 122, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 59, 122, 0.06);
}

.contract-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  max-width: 730px;
  margin: 0 auto 30px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(16,24,40,0.06);
}

.contract-search input {
  border: 0;
  min-height: 48px;
  padding: 0 20px;
  outline: 0;
  font-size: 16px;
  background: transparent;
  width: 100%;
}

.tag-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}

.tag:hover {
  background: var(--orange-100);
  border-color: rgba(221, 111, 34, 0.25);
  color: var(--orange);
  transform: scale(1.03);
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contract-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(16,24,40,0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contract-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.06);
  border-color: rgba(221, 111, 34, 0.25);
}

.contract-card strong { color: var(--navy-900); font-size: 17.5px; font-weight: 800; }
.contract-card span { color: var(--orange); font-weight: 750; font-size: 14px; transition: transform 0.2s ease; }
.contract-card:hover span { transform: translateX(2px); }

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

blockquote {
  margin: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.6;
}

.person {
  margin-top: 20px;
  font-weight: 800;
  color: var(--navy-900);
  font-size: 15px;
}

.cta-band {
  text-align: center;
  background: linear-gradient(135deg, #fff3ea 0%, #f1f6ff 100%);
  border: 1px solid rgba(221, 111, 34, 0.08);
  border-radius: 36px;
  padding: 56px 32px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.02);
}

.cta-band h2 {
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-band p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.6;
}

footer {
  background: radial-gradient(circle at top left, #052653, #031733);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

footer h3, footer h4 { color: var(--white); margin-bottom: 16px; font-weight: 700; }
footer h3 { font-size: 22px; font-weight: 800; }

footer p {
  line-height: 1.6;
  font-size: 14.5px;
}

footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: color 0.2s ease;
}

footer a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}

.menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  gap: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

@media (max-width: 1020px) {
  .menu { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero-grid, .audience-grid, .whatif { grid-template-columns: 1fr; }
  .audience-copy { position: static; }
  .cards-3, .flow-tabs, .testimonial-grid { grid-template-columns: 1fr; }
  .trust-grid, .contract-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar .container, .nav-actions { display: none; }
  .nav { min-height: 66px; }
  .hero { padding: 48px 0 52px; }
  .prompt-row, .contract-search { grid-template-columns: 1fr; border-radius: 24px; }
  .btn { width: 100%; }
  .quick-actions .btn { width: auto; }
  .audience-list, .trust-grid, .contract-grid, .footer-grid { grid-template-columns: 1fr; }
  .whatif { padding: 28px; border-radius: 26px; }
  .footer-bottom { flex-direction: column; }
}
