:root {
  --swift-ink: #0b1736;
  --swift-ink-soft: #33415f;
  --swift-muted: #66738d;
  --swift-line: #dbe5f3;
  --swift-line-strong: #c7d5ea;
  --swift-white: #ffffff;
  --swift-surface: #f7faff;
  --swift-blue: #087df1;
  --swift-blue-deep: #1138df;
  --swift-cyan: #079df9;
  --swift-indigo: #2500f3;
  --swift-shadow-sm: 0 16px 44px rgba(17, 56, 140, .08);
  --swift-radius: 24px;
  --swift-shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--swift-ink);
  background: var(--swift-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(var(--swift-shell), calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(219,229,243,.86);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  position: relative;
  display: block;
  width: 250px;
  min-width: 250px;
  aspect-ratio: 1916 / 605;
  overflow: hidden;
  text-decoration: none;
}
.brand-lockup {
  width: 100%;
  height: auto;
  transform: translateY(-6.7%);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: .94rem;
  font-weight: 750;
}
.site-nav a {
  color: #33415f;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--swift-blue-deep); }
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(120deg, var(--swift-blue), var(--swift-indigo));
  box-shadow: 0 12px 28px rgba(17,56,223,.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 74px;
  background:
    radial-gradient(circle at 88% 20%, rgba(7,157,249,.07), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(37,0,243,.045), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}
.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--swift-blue-deep);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--swift-cyan), var(--swift-indigo));
  box-shadow: 0 0 0 6px rgba(8,125,241,.08);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 1040px;
  margin: 0 auto 24px;
  font-size: clamp(3.05rem, 5.2vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 .accent {
  background: linear-gradient(120deg, var(--swift-blue), var(--swift-indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 3.8vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.hero-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--swift-ink-soft);
  font-size: 1.19rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 820;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--swift-blue), var(--swift-indigo));
  box-shadow: 0 15px 34px rgba(17,56,223,.24);
}
.button-secondary {
  color: var(--swift-blue-deep);
  border-color: var(--swift-line-strong);
  background: rgba(255,255,255,.9);
}

/* The header logo already carries the bird strongly; keep the hero itself clean. */
.hero-visual { display: none; }

.section { padding: 82px 0; }
.section-soft { background: var(--swift-surface); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { margin-bottom: 0; color: var(--swift-muted); font-size: 1.05rem; }
.section-label {
  margin-bottom: 10px;
  color: var(--swift-blue-deep);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--swift-line);
  border-radius: var(--swift-radius);
  background: #fff;
  box-shadow: var(--swift-shadow-sm);
}
.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(8,125,241,.12), transparent 70%);
}
.service-card .service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  background: linear-gradient(145deg, #eff5ff, #e8efff);
  color: var(--swift-blue-deep);
}
.service-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { font-size: clamp(1.65rem, 2.4vw, 2.18rem); }
.service-card .service-question {
  margin-bottom: 10px;
  color: var(--swift-ink);
  font-size: 1.08rem;
  font-weight: 780;
}
.service-card p { color: var(--swift-ink-soft); }
.service-card .service-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--swift-blue-deep);
  font-weight: 820;
  text-decoration: none;
}
.service-card .service-link:hover,
.service-card .service-link:focus-visible { text-decoration: underline; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.quick-column {
  padding: 28px;
  border: 1px solid var(--swift-line);
  border-radius: 22px;
  background: #fff;
}
.quick-column h3 { margin-bottom: 18px; }
.quick-links { display: grid; gap: 10px; }
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid #e5ecf7;
  border-radius: 14px;
  background: var(--swift-surface);
  color: #2d3b58;
  font-weight: 720;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.quick-link:hover,
.quick-link:focus-visible {
  transform: translateX(2px);
  border-color: #c2d3ee;
  background: #fff;
}
.quick-link span:last-child { color: var(--swift-blue-deep); font-weight: 900; }

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 30px;
  align-items: stretch;
}
.why-story,
.xero-trust {
  border: 1px solid var(--swift-line);
  border-radius: var(--swift-radius);
  background: #fff;
  box-shadow: var(--swift-shadow-sm);
}
.why-story { padding: 38px; }
.why-story p { max-width: 720px; color: var(--swift-ink-soft); font-size: 1.07rem; }
.text-link {
  color: var(--swift-blue-deep);
  font-weight: 820;
  text-decoration: none;
}
.text-link:hover,
.text-link:focus-visible { text-decoration: underline; }
.xero-trust {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.xero-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.xero-title img { width: 52px; height: 52px; }
.xero-title strong { font-size: 1.12rem; }
.xero-trust p { margin-bottom: 16px; color: var(--swift-muted); }
.xero-trust .xero-link { color: var(--swift-blue-deep); font-weight: 780; text-decoration: none; }
.xero-trust .xero-link:hover,
.xero-trust .xero-link:focus-visible { text-decoration: underline; }

.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(7,157,249,.42), transparent 28%),
    linear-gradient(120deg, #0b48d8 0%, #1138df 46%, #2500f3 100%);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.final-cta h2 { max-width: 680px; margin-bottom: 12px; }
.final-cta p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.83); font-size: 1.05rem; }
.final-cta .button {
  flex: 0 0 auto;
  color: var(--swift-blue-deep);
  background: #fff;
  box-shadow: 0 16px 34px rgba(5,17,84,.22);
}

.site-footer {
  padding: 44px 0 30px;
  border-top: 1px solid var(--swift-line);
  background: #fbfcff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(260px, 1.25fr) minmax(240px, .9fr);
  gap: 34px;
  align-items: start;
}
.footer-brand-wrap {
  position: relative;
  width: 220px;
  aspect-ratio: 1916 / 605;
  overflow: hidden;
}
.footer-brand-lockup { width: 100%; height: auto; transform: translateY(-6.7%); }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a,
.footer-support a {
  color: #43516d;
  font-size: .9rem;
  font-weight: 720;
  text-decoration: none;
}
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-support a:hover,
.footer-support a:focus-visible { color: var(--swift-blue-deep); text-decoration: underline; }
.footer-support { color: var(--swift-muted); font-size: .88rem; }
.footer-support p { margin-bottom: 8px; }
.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--swift-line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #7a859c;
  font-size: .79rem;
}
.footer-bottom p { margin-bottom: 0; }

@media (max-width: 1040px) {
  .header-inner { gap: 18px; }
  .brand { width: 220px; min-width: 220px; }
  .site-nav { gap: 14px; font-size: .89rem; }
  .site-nav .nav-cta { padding: 0 15px; }
  .hero { padding: 60px 0 62px; }
  .hero-copy { width: min(900px, 100%); }
  .why-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-support { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0 14px;
  }
  .brand { width: 205px; min-width: 205px; }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: .86rem;
  }
  .site-nav .nav-cta { min-height: 40px; padding: 0 14px; }
  .hero { padding: 52px 0 54px; }
  .hero-grid { display: block; }
  .hero-copy {
    width: 100%;
    max-width: 700px;
    margin: 0;
    text-align: left;
  }
  h1 {
    max-width: 690px;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(2.8rem, 7.4vw, 4.15rem);
  }
  .hero-lead {
    max-width: 610px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-actions { justify-content: flex-start; }
  .service-grid,
  .quick-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, var(--swift-shell)); }
  .site-header { position: relative; }
  .brand { width: 190px; min-width: 190px; }
  .site-nav { gap: 7px 13px; font-size: .82rem; }
  .site-nav .nav-cta { min-height: 38px; padding: 0 12px; }
  .hero { padding: 42px 0 46px; }
  .hero-kicker { margin-bottom: 14px; font-size: .72rem; letter-spacing: .08em; }
  h1 { font-size: clamp(2.45rem, 11.8vw, 3.25rem); line-height: 1; }
  h2 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { align-items: stretch; }
  .button { min-height: 48px; padding: 0 18px; }
  .service-card { min-height: 0; padding: 28px; }
  .section { padding: 58px 0; }
  .section-heading { margin-bottom: 26px; }
  .quick-column,
  .why-story,
  .xero-trust { padding: 24px; }
  .final-cta { padding: 58px 0; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-support { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}