:root {
  --primary: #0b1f2a;
  --primary-soft: #17384c;
  --accent: #2f80ed;
  --bg: #f4f7fa;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #111827;
  --muted: #5f6b76;
  --border: #e4ebf1;
  --shadow-lg: 0 28px 70px rgba(11, 31, 42, 0.12);
  --shadow-md: 0 18px 40px rgba(11, 31, 42, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

section[id] {
  scroll-margin-top: 120px;
}

.page-shell {
  min-height: 100vh;
}

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

.section {
  padding: clamp(88px, 10vw, 140px) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.95));
  border-top: 1px solid rgba(228, 235, 241, 0.9);
  border-bottom: 1px solid rgba(228, 235, 241, 0.9);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  letter-spacing: -0.03em;
}

h1,
h2,
h3 {
  color: var(--primary);
}

p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-lead {
  margin-top: 14px;
  max-width: 50ch;
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding-top: 12px;
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: auto;
  height: 56px;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 31, 42, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--border);
  color: var(--primary);
}

.button-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(132px, 16vw, 190px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  z-index: -1;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.16), transparent 68%);
  filter: blur(4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  line-height: 0.94;
}

.lead {
  margin-top: 18px;
  max-width: 54ch;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(228, 235, 241, 0.9);
}

.fact-chip {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fact-chip::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(47, 128, 237, 0.18));
}

.fact-chip span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-chip strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 32px;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 36px 80px rgba(11, 31, 42, 0.16);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 42, 0.08) 58%, rgba(11, 31, 42, 0.18) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 250px;
  padding: 16px 18px;
  background: rgba(11, 31, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

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

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

.summary-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 235, 241, 0.95);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(11, 31, 42, 0.05);
}

.summary-card:first-child {
  grid-column: span 2;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-soft) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.summary-card:first-child h3,
.summary-card:first-child .summary-index {
  color: #ffffff;
}

.summary-card:first-child p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.summary-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.summary-card:nth-child(4) {
  border-color: rgba(47, 128, 237, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, rgba(47, 128, 237, 0.05) 100%);
}

.summary-index {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.summary-card p:last-child {
  font-size: 0.98rem;
}

.investor-panel {
  position: relative;
  padding: 42px 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 18px 34px rgba(11, 31, 42, 0.05);
}

.investor-panel::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.investor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.investor-data {
  display: grid;
  gap: 24px;
}

.investor-data > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.investor-data > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-data p {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

.about-grid,
.feature-grid,
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-copy p {
  max-width: 62ch;
  font-size: 1.04rem;
}

.quote-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 42px 38px;
  background: linear-gradient(145deg, var(--primary) 0%, #16384c 100%);
  color: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.quote-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.quote-note {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.statement-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 72px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.statement-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.statement-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.2;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 64px);
  background: linear-gradient(145deg, var(--primary) 0%, #17384c 56%, #1b4761 100%);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.feature-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.18);
}

.feature-panel .section-heading,
.feature-panel .section-heading h2,
.feature-panel .eyebrow,
.feature-panel p,
.feature-panel h3,
.feature-panel strong,
.feature-panel .note-kicker {
  position: relative;
  z-index: 1;
}

.feature-panel .section-heading h2,
.feature-panel .eyebrow,
.feature-panel h3,
.feature-panel strong {
  color: #ffffff;
}

.feature-panel .section-heading {
  margin-bottom: 34px;
}

.feature-copy {
  display: grid;
  gap: 18px;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-note {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  gap: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  backdrop-filter: blur(12px);
}

.note-kicker {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-note p {
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  counter-reset: service;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 36px;
}

.service-card {
  position: relative;
  padding: 28px 0 18px 18px;
  border-top: 1px solid var(--border);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.service-card::before {
  counter-increment: service;
  content: counter(service, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  max-width: 34ch;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.principle-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(47, 128, 237, 0.18);
  border-radius: 22px;
}

.principle-item h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.contact-section {
  padding-bottom: clamp(76px, 9vw, 120px);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 56px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(47, 128, 237, 0.09), transparent 48%);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-panel p {
  max-width: 54ch;
  margin: 16px auto 0;
  font-size: 1.02rem;
}

.contact-panel .button {
  margin-top: 24px;
  overflow-wrap: anywhere;
}

.page-hero {
  padding-top: clamp(128px, 15vw, 176px);
  padding-bottom: clamp(64px, 9vw, 96px);
}

.page-hero .hero-copy {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.site-footer {
  padding: 40px 0 48px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.74);
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  color: inherit;
}

.footer-note {
  max-width: 620px;
}

@media (max-width: 980px) {
  .hero-grid,
  .summary-grid-three,
  .investor-grid,
  .about-grid,
  .feature-grid,
  .services-layout,
  .service-grid,
  .principle-list {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
    height: 360px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

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

  .summary-card:first-child {
    grid-column: 1 / -1;
  }

  .investor-panel {
    padding: 36px 32px;
  }

  .service-card p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 0;
    padding-top: 0;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    gap: 16px;
    padding: 12px 14px;
    border-radius: 0 0 18px 18px;
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    display: inline-block;
    grid-area: toggle;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .nav-cta {
    display: none;
    grid-area: cta;
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    padding: 2px 0;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-header.nav-open .nav-cta {
    display: inline-flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .brand-logo {
    height: 44px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-facts,
  .hero-badge,
  .feature-note {
    display: none;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.02;
    max-width: none;
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 220px;
    height: 220px;
    border-radius: 24px;
  }

  .section-soft {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
  }

  .summary-card,
  .quote-card,
  .feature-panel,
  .contact-panel {
    border-radius: 22px;
    box-shadow: none;
  }

  .summary-card {
    padding: 22px;
    gap: 10px;
  }

  .summary-grid,
  .summary-grid-three {
    grid-template-columns: 1fr;
  }

  .summary-card:first-child {
    grid-column: auto;
  }

  .investor-panel,
  .feature-panel,
  .contact-panel,
  .statement-panel {
    padding: 24px 20px;
    box-shadow: none;
  }

  .investor-panel {
    border-radius: 22px;
  }

  .quote-card,
  .feature-note {
    padding: 22px;
    border-radius: 22px;
    box-shadow: none;
  }

  .statement-panel h2,
  .contact-panel h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .statement-panel h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.15;
  }

  .statement-panel h2 br {
    display: none;
  }

  .statement-panel::after,
  .feature-panel::after {
    display: none;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  blockquote {
    font-size: 1.7rem;
  }

  .investor-data {
    gap: 16px;
  }

  .investor-data > div {
    padding-bottom: 14px;
  }

  .service-grid {
    gap: 18px;
  }

  .service-card {
    padding: 22px 0 14px;
  }

  .principle-list {
    gap: 16px;
  }

  .principle-item {
    padding-top: 14px;
  }

  .contact-panel .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1120px, calc(100% - 20px));
  }

  .brand-logo {
    height: 40px;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .site-header-inner {
    padding: 10px 12px;
  }

  .statement-panel h2,
  .contact-panel h2,
  .section-heading h2 {
    font-size: 1.8rem;
  }
}

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

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