:root {
  --black: #080a0d;
  --ink: #151a21;
  --slate: #59636f;
  --mist: #f4f6f8;
  --line: #dfe4e9;
  --white: #ffffff;
  --blue: #075edb;
  --blue-dark: #003d99;
  --blue-light: #68adff;
  --shadow: 0 24px 64px rgba(13, 32, 57, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .8rem 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  min-height: 90px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-name {
  display: block;
  color: var(--black);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .015em;
}
.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: #535a63;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .17em;
}

nav { display: flex; align-items: center; gap: 29px; font-size: 12px; font-weight: 750; }
nav a { color: #424a53; text-decoration: none; transition: color .2s ease; }
nav a:hover { color: var(--blue); }
.nav-cta {
  padding: 12px 17px;
  color: var(--white) !important;
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(7, 94, 219, .16);
}
.nav-cta:hover { background: var(--blue-dark); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  min-height: 710px;
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 95px;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 175px;
  background: linear-gradient(to top, rgba(232, 239, 248, .48), rgba(255,255,255,0));
}
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.hero-copy { max-width: 670px; padding-right: 24px; }

.eyebrow {
  display: block;
  margin: 0 0 22px;
  color: #40566f;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { display: none; }
.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--black);
  font-size: clamp(50px, 5.4vw, 76px);
  font-weight: 350;
  line-height: 1.01;
  letter-spacing: -.052em;
}
.hero h1 em { color: var(--blue); font-style: normal; font-weight: 750; }
.hero-lede {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(7, 94, 219, .22);
}
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(7, 94, 219, .3); }
.button-light { color: var(--blue-dark); background: var(--white); box-shadow: 0 10px 28px rgba(0, 20, 55, .16); }
.button-light:hover { background: #eef5ff; }
.text-link { color: var(--black); font-size: 13px; font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 4px; color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}
.proof-row div { padding: 21px 20px 0 0; }
.proof-row div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.proof-row strong { display: block; color: var(--black); font-size: 24px; font-weight: 850; }
.proof-row span { display: block; margin-top: 5px; color: #697580; font-size: 10px; line-height: 1.45; }

.hero-visual { display: flex; justify-content: flex-end; align-items: center; min-width: 0; padding-left: 25px; }
.logo-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 535px);
  padding: 15px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
}
.logo-panel img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.ice-facet { position: absolute; background: linear-gradient(145deg, rgba(0, 93, 219, .22), rgba(104, 173, 255, .04)); clip-path: polygon(50% 0, 100% 100%, 0 78%); }
.facet-one { right: -80px; top: -55px; width: 320px; height: 450px; transform: rotate(13deg); }
.facet-two { left: 55px; bottom: -30px; width: 220px; height: 285px; opacity: .55; transform: rotate(-20deg); }

.section { padding: 108px max(24px, calc((100vw - 1180px) / 2)); }
.section-heading { max-width: 750px; }
.section-heading h2,
.about-copy h2,
.examples-heading h2,
.process-copy > h2,
.start-card-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(39px, 4.2vw, 58px);
  font-weight: 350;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.section-heading > p:last-child,
.process-copy > p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.72;
}

.solutions { background: var(--mist); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.solution-card {
  position: relative;
  min-height: 238px;
  padding: 27px 27px 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--blue-light), var(--blue));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s ease;
}
.solution-card:hover { transform: translateY(-4px); border-color: #b9c9dd; box-shadow: 0 17px 38px rgba(10, 42, 82, .08); }
.solution-card:hover::before { transform: scaleY(1); }
.card-number { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.solution-card h3 { margin: 50px 0 12px; color: var(--black); font-size: 20px; font-weight: 750; line-height: 1.16; letter-spacing: -.025em; }
.solution-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; }

.experience-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 72px;
  align-items: center;
}
.about-portrait {
  position: relative;
  width: min(100%, 385px);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(13, 32, 57, .12);
}
.about-portrait img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.portrait-facet {
  position: absolute;
  z-index: 1;
  right: -32px;
  bottom: -28px;
  width: 165px;
  height: 185px;
  background: linear-gradient(145deg, rgba(7,94,219,.28), rgba(104,173,255,.07));
  clip-path: polygon(50% 0, 100% 100%, 0 77%);
}
.about-copy h2 { max-width: 700px; }
.about-copy > p:not(.eyebrow):not(.about-name) {
  max-width: 710px;
  margin: 17px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.72;
}
.about-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 27px 0 22px;
  padding-left: 17px;
  border-left: 3px solid var(--blue);
}
.about-name strong { color: var(--black); font-size: 19px; }
.about-name span { color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.about-actions { display: flex; align-items: center; gap: 24px; margin-top: 29px; }

.examples-block { margin-top: 105px; padding-top: 94px; border-top: 1px solid var(--line); }
.examples-heading { max-width: 790px; }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.example-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 6px;
  background: linear-gradient(145deg, var(--white), #f6f9fd);
}
.example-card h3 { margin: 47px 0 14px; color: var(--black); font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.example-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.68; }
.examples-note { margin: 17px 0 0; color: #707b87; font-size: 10px; line-height: 1.55; }

.process {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 88px;
  align-items: start;
  margin-top: 105px;
  padding-top: 94px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.process-list { margin: 44px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 8px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { padding-top: 4px; color: var(--blue); font-size: 11px; font-weight: 900; }
.process-list strong { color: var(--black); font-size: 19px; font-weight: 800; }
.process-list p { margin: 7px 0 0; color: var(--slate); font-size: 13px; line-height: 1.6; }

.start-card {
  position: relative;
  padding: 43px;
  overflow: hidden;
  color: var(--white);
  border-radius: 9px;
  background: linear-gradient(145deg, var(--blue-dark), var(--blue) 67%, #1578ed);
  box-shadow: var(--shadow);
}
.start-card::before {
  content: "";
  position: absolute;
  right: -75px;
  top: -125px;
  width: 290px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.15);
  clip-path: polygon(50% 0, 100% 100%, 0 75%);
  background: rgba(255,255,255,.055);
  transform: rotate(14deg);
}
.start-card > * { position: relative; z-index: 1; }
.micro-label { margin: 0 0 12px; color: #cce1ff; font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.start-card-heading h2 { color: var(--white); font-size: clamp(34px, 3.1vw, 44px); }
.start-card-heading > p:last-child { margin: 15px 0 0; color: #d7e6fa; font-size: 13px; line-height: 1.6; }
#deal-form { margin-top: 29px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; margin-bottom: 13px; color: #e2edfb; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--black);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 4px;
  outline: none;
  background: rgba(255,255,255,.96);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  transition: box-shadow .2s ease, border-color .2s ease;
}
input::placeholder, textarea::placeholder { color: #778391; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,.2); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 5px 0 18px; color: #d8e5f7; font-size: 12px; font-weight: 500; line-height: 1.55; letter-spacing: 0; text-transform: none; }
.consent input { width: 15px; height: 15px; flex: 0 0 auto; margin: 0; accent-color: var(--black); }
.consent a { color: var(--white); font-weight: 800; }
.form-button { width: 100%; }
.form-button:disabled { cursor: wait; opacity: .72; }
.form-note { margin: 13px 0 0; color: #c6daf5; font-size: 11px; text-align: center; }
.form-note a { color: var(--white); font-weight: 800; }
.form-result { display: none; margin-top: 16px; padding: 14px; color: var(--white); border: 1px solid rgba(255,255,255,.28); border-radius: 4px; background: rgba(0,29,75,.22); font-size: 12px; line-height: 1.5; }
.form-result.show { display: block; }
.form-result a { color: var(--white); font-weight: 900; }

footer { padding: 45px max(24px, calc((100vw - 1180px) / 2)); color: #aab3be; background: var(--black); }
.footer-brand, .footer-meta { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { padding-bottom: 22px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-brand strong { font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.footer-brand span { color: var(--blue-light); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.footer-meta { flex-wrap: wrap; gap: 14px 24px; justify-content: flex-start; margin-top: 21px; font-size: 11px; }
.footer-meta a { color: var(--white); font-weight: 750; text-decoration: none; }
.footer-meta span:last-child { margin-left: auto; }
.disclaimer { max-width: 900px; margin: 27px 0 0; color: #818b96; font-size: 11px; line-height: 1.65; }

.legal-page {
  min-height: 70vh;
  padding: 85px max(24px, calc((100vw - 980px) / 2)) 110px;
  background: var(--white);
}
.legal-page h1 { margin: 0; color: var(--black); font-size: clamp(43px, 6vw, 68px); font-weight: 350; letter-spacing: -.05em; }
.legal-meta { margin: 18px 0 0; color: #425063; font-size: 13px; line-height: 1.6; }
.legal-page .legal-intro { max-width: 870px; margin: 16px 0 34px; color: var(--slate); font-size: 16px; line-height: 1.75; }
.legal-summary {
  margin: 0 0 45px;
  padding: 26px 28px;
  border: 1px solid #cbd9e9;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: #f5f9ff;
}
.legal-summary h2 { margin: 0 0 13px; color: var(--black); font-size: 21px; }
.legal-summary ul { margin: 0; padding-left: 20px; }
.legal-summary li { color: #425063; font-size: 14px; line-height: 1.7; }
.legal-summary li + li { margin-top: 7px; }
.legal-section { padding: 31px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 13px; color: var(--black); font-size: 23px; line-height: 1.25; }
.legal-section p, .legal-section li { color: var(--slate); font-size: 14px; line-height: 1.72; }
.legal-section p { margin: 12px 0 0; }
.legal-section p:first-of-type { margin-top: 0; }
.legal-section ul { margin: 14px 0 0; padding-left: 22px; }
.legal-section li + li { margin-top: 8px; }
.legal-section a { color: var(--blue); font-weight: 750; }
.legal-section strong { color: #28384a; }
.legal-table-wrap { margin-top: 21px; overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
.legal-table-wrap:focus { outline: 3px solid rgba(7, 94, 219, .25); outline-offset: 3px; }
.legal-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--white); }
.legal-table th, .legal-table td { padding: 16px; border-bottom: 1px solid var(--line); color: var(--slate); font-size: 13px; line-height: 1.6; text-align: left; vertical-align: top; }
.legal-table thead th { color: var(--black); background: var(--mist); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.legal-table tbody th { width: 24%; color: #28384a; font-weight: 800; }
.legal-table tbody tr:last-child th, .legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-callout { margin: 18px 0; padding: 20px 22px; border: 1px solid #e4c6c6; border-radius: 6px; background: #fff8f8; }
.legal-callout p { margin: 0; color: #594444; }

.reveal { opacity: 0; transform: translateY(17px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  nav { gap: 16px; font-size: 10px; }
  .hero { grid-template-columns: 1fr; padding-top: 68px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { justify-content: center; padding: 65px 0 0; }
  .logo-panel { width: min(100%, 620px); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: .75fr 1.25fr; gap: 42px; }
  .example-grid { grid-template-columns: 1fr; }
  .example-card { min-height: 230px; }
  .process { grid-template-columns: 1fr; gap: 62px; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 32px); min-height: 78px; }
  nav > a:not(.nav-cta) { display: none; }
  nav { gap: 0; }
  .brand-name { font-size: 17px; }
  .brand-subtitle { font-size: 6.5px; }
  .nav-cta { padding: 9px 11px; font-size: 9px; }
  .hero { min-height: 0; padding: 62px 20px 75px; }
  .hero-copy { padding-right: 0; }
  .hero h1 { font-size: clamp(44px, 13vw, 60px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .proof-row { grid-template-columns: 1fr; margin-top: 43px; }
  .proof-row div, .proof-row div + div { padding: 15px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .hero-visual { padding-top: 48px; }
  .logo-panel { padding: 0; }
  .section { padding: 80px 20px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 205px; }
  .solution-card h3 { margin-top: 39px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { width: min(100%, 330px); }
  .about-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .examples-block, .process { margin-top: 78px; padding-top: 74px; }
  .process { gap: 48px; }
  .start-card { margin: 0 -3px; padding: 31px 21px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .legal-page { padding: 62px 20px 82px; }
  .legal-summary { padding: 22px 20px; }
  .legal-table th, .legal-table td { padding: 14px; }
  .footer-brand, .footer-meta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-meta span:last-child { margin-left: 0; }
}
