:root {
  --navy-950: #081427;
  --navy-900: #0b1f3a;
  --navy-800: #142c4f;
  --blue-700: #1c355e;
  --blue-500: #2c5ea8;
  --purple-600: #6c3bff;
  --purple-500: #8e44ad;
  --amber-500: #f39c12;
  --gray-500: #aab4c3;
  --gray-300: #d5dde8;
  --white-100: #f5f7fa;
  --white-50: #fbfcfe;
  --shadow-soft: 0 24px 60px rgba(8, 20, 39, 0.22);
  --shadow-card: 0 18px 36px rgba(8, 20, 39, 0.14);
  --border-soft: 1px solid rgba(170, 180, 195, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1240px;
  --font-head: "Avenir Next Condensed", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-950);
  background:
    radial-gradient(circle at top, rgba(108, 59, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #f9fbff 0%, #f3f6fb 46%, #edf2f8 100%);
  line-height: 1.6;
}

body[data-nav-open="true"] {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white-100);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(245, 247, 250, 0.82);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  display: block;
  margin-top: 0.15rem;
  color: var(--blue-700);
  font-size: 0.86rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  padding: 0.4rem;
  border-radius: 0.75rem;
}

.nav-toggle svg {
  width: 1.8rem;
  height: 1.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--blue-700);
  font-weight: 600;
  padding: 0.5rem 0.1rem;
  position: relative;
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple-600), var(--amber-500));
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover,
.button-link:hover,
.button:focus-visible,
.button-link:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white-100);
  background: linear-gradient(135deg, var(--purple-600), var(--blue-500));
  box-shadow: 0 18px 30px rgba(108, 59, 255, 0.22);
}

.button--secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 31, 58, 0.1);
}

.button--ghost {
  color: var(--white-100);
  background: rgba(245, 247, 250, 0.1);
  border: 1px solid rgba(245, 247, 250, 0.18);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(108, 59, 255, 0.18), transparent 40%),
    radial-gradient(circle at top right, rgba(243, 156, 18, 0.2), transparent 34%);
  pointer-events: none;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(28, 53, 94, 0.08);
  color: var(--blue-700);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-600), var(--amber-500));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy-900);
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1.2rem;
  max-width: 62ch;
  font-size: 1.12rem;
  color: rgba(20, 44, 79, 0.92);
}

.hero-copy .button-row,
.page-hero-copy .button-row {
  margin-top: 1.5rem;
}

.hero-aside {
  position: relative;
  min-height: 100%;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.75rem;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(11, 31, 58, 0.96), rgba(18, 39, 69, 0.92)),
    linear-gradient(135deg, rgba(108, 59, 255, 0.16), transparent);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% -12%;
  height: 62%;
  background: linear-gradient(180deg, rgba(142, 68, 173, 0), rgba(142, 68, 173, 0.22));
  clip-path: polygon(0 28%, 15% 20%, 30% 34%, 47% 10%, 62% 24%, 80% 0, 100% 20%, 100% 100%, 0 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(245, 247, 250, 0.12);
  border-radius: 28px;
}

.hero-visual-rail,
.hero-visual-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.hero-visual-rail {
  align-items: flex-start;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 14px 28px rgba(8, 20, 39, 0.18);
}

.hero-pill--dark {
  color: var(--white-100);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-pill--light,
.hero-pill--footer {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
}

.hero-pill--light {
  max-width: 22rem;
}

.hero-pill--light img {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
}

.hero-logo-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 31rem;
  padding: 1rem 1rem 0;
}

.hero-logo-halo {
  position: absolute;
  inset: auto 50% 3rem;
  width: min(72%, 24rem);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(142, 68, 173, 0.34) 0%, rgba(142, 68, 173, 0.08) 44%, rgba(142, 68, 173, 0) 72%);
  filter: blur(10px);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.hero-visual-footer {
  align-items: end;
}

.hero-visual-footer strong,
.hero-visual-footer span {
  display: block;
}

.hero-visual-footer strong {
  color: var(--white-100);
  font-family: var(--font-head);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.hero-visual-footer span {
  margin-top: 0.35rem;
  color: rgba(245, 247, 250, 0.82);
  max-width: 26ch;
}

.hero-pill--footer {
  flex-shrink: 0;
}

.hero-stats {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: var(--border-soft);
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.section {
  padding: 1.6rem 0 5.2rem;
}

.section--tight {
  padding-top: 0.5rem;
}

.section-head {
  max-width: 60ch;
  margin-bottom: 2rem;
}

.section-head p {
  margin-top: 0.9rem;
  color: rgba(20, 44, 79, 0.92);
}

.surface-band,
.cta-band {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.surface-band {
  padding: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.84)),
    linear-gradient(180deg, rgba(108, 59, 255, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.surface-band--dark,
.cta-band {
  color: var(--white-100);
  background:
    linear-gradient(145deg, rgba(11, 31, 58, 0.98), rgba(28, 53, 94, 0.96)),
    linear-gradient(135deg, rgba(108, 59, 255, 0.18), transparent);
}

.surface-band--dark h2,
.surface-band--dark h3,
.cta-band h2,
.cta-band h3,
.surface-band--dark p,
.cta-band p {
  color: inherit;
}

.surface-band--dark::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(108, 59, 255, 0), rgba(108, 59, 255, 0.16));
  clip-path: polygon(0 30%, 16% 0, 31% 18%, 51% 10%, 69% 0, 100% 26%, 100% 100%, 0 100%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item,
.mini-panel {
  padding: 1.2rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: var(--border-soft);
  box-shadow: var(--shadow-card);
}

.trust-item strong,
.mini-panel strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-900);
}

.trust-item span,
.mini-panel span {
  display: block;
  margin-top: 0.35rem;
  color: var(--blue-700);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.outline-card,
.timeline-card,
.quote-card {
  height: 100%;
  padding: 1.55rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.outline-card:hover,
.timeline-card:hover,
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 42px rgba(8, 20, 39, 0.16);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(108, 59, 255, 0.14), rgba(243, 156, 18, 0.14));
  color: var(--purple-600);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card p,
.outline-card p,
.timeline-card p,
.quote-card p {
  margin-top: 0.75rem;
  color: rgba(20, 44, 79, 0.92);
}

.check-list,
.pill-list,
.detail-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.check-list li,
.pill-list li,
.detail-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(20, 44, 79, 0.96);
}

.check-list li::before,
.pill-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-600), var(--amber-500));
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.process-step {
  position: relative;
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: var(--border-soft);
  box-shadow: var(--shadow-card);
}

.process-step span,
.timeline-card span,
.number-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-600), var(--blue-500));
  color: var(--white-100);
  font-weight: 800;
  font-size: 0.85rem;
}

.process-step h3,
.timeline-card h3 {
  margin-top: 1rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--purple-600), var(--amber-500));
}

.metrics-grid,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 30, 58, 0.08);
  color: var(--blue-700);
  font-weight: 700;
}

.form-card {
  padding: 1.7rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 44, 79, 0.14);
  background: rgba(245, 247, 250, 0.96);
  color: var(--navy-900);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(108, 59, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(108, 59, 255, 0.12);
  background: #fff;
}

.helper,
.form-status {
  font-size: 0.95rem;
  color: var(--blue-700);
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.9rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(11, 31, 58, 0.96);
  color: var(--white-100);
  box-shadow: var(--shadow-soft);
}

.contact-card h2,
.contact-card h3,
.contact-card p {
  color: inherit;
}

.contact-card li {
  color: rgba(245, 247, 250, 0.86);
}

.contact-card .detail-list li::before,
.contact-card .check-list li::before {
  background: linear-gradient(135deg, #f39c12, #c59cff);
}

.contact-card a {
  color: var(--white-100);
  font-weight: 700;
}

.quote-card {
  background:
    linear-gradient(160deg, rgba(11, 31, 58, 0.96), rgba(28, 53, 94, 0.94)),
    linear-gradient(135deg, rgba(108, 59, 255, 0.12), transparent);
  color: var(--white-100);
}

.quote-card h2,
.quote-card p,
.quote-card h3 {
  color: inherit;
}

.quote-card li {
  color: rgba(245, 247, 250, 0.88);
}

.cta-band {
  padding: 2.1rem;
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.site-footer {
  padding: 2rem 0 2.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.footer-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(11, 31, 58, 0.96);
  color: var(--white-100);
  box-shadow: var(--shadow-soft);
}

.footer-card h3,
.footer-card p,
.footer-card li,
.footer-card a {
  color: inherit;
}

.footer-links,
.footer-nav {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 1rem;
  text-align: center;
  color: rgba(20, 44, 79, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid--three,
  .metrics-grid,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5.1rem 1rem auto;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 250, 255, 0.98);
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: var(--shadow-soft);
    transform: translateY(-0.8rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 13ch;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-visual-rail,
  .hero-visual-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logo-stage {
    min-height: 24rem;
  }

  .hero-stats,
  .card-grid,
  .card-grid--three,
  .card-grid--two,
  .metrics-grid,
  .profile-grid,
  .trust-strip,
  .process-strip,
  .field-row {
    grid-template-columns: 1fr;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .hero,
  .page-hero {
    padding-top: 2.8rem;
  }

  .surface-band,
  .cta-band,
  .form-card,
  .footer-card {
    padding: 1.35rem;
  }

  .hero-visual {
    padding: 1.15rem;
  }

  .hero-pill {
    width: 100%;
  }

  .hero-pill--light,
  .hero-pill--footer {
    max-width: none;
  }

  .hero-logo-stage {
    min-height: 18rem;
  }

  .section {
    padding-bottom: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
