:root {
  --ink: #142033;
  --muted: #536174;
  --soft: #6e7b8d;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --line: #dce5ee;
  --navy: #102a43;
  --cyan: #0e7490;
  --green: #0f766e;
  --violet: #6d5bd0;
  --rose: #c026d3;
  --sky: #0284c7;
  --focus: #f59e0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(240, 249, 255, 0.55), transparent 520px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.page-shell,
.nav {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 229, 238, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  position: relative;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green));
  content: "";
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--cyan);
}

.intro-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 112px;
  background:
    linear-gradient(118deg, rgba(2, 132, 199, 0.13), transparent 28%),
    linear-gradient(242deg, rgba(109, 91, 208, 0.16), transparent 32%),
    linear-gradient(15deg, rgba(15, 118, 110, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #eef8f7 100%);
  background-size: 120% 120%, 130% 130%, 120% 120%, 100% 100%;
  animation: softShift 14s ease-in-out infinite alternate;
}

.intro-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 116, 144, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 116, 144, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
  pointer-events: none;
}

.intro-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: transparent;
  background: linear-gradient(110deg, var(--navy) 0%, #12385b 36%, var(--sky) 66%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.headline {
  max-width: 780px;
  margin: 26px 0 0;
  color: #0f1f35;
  font-size: clamp(1.32rem, 3vw, 1.72rem);
  font-weight: 780;
  line-height: 1.35;
}

.intro-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.primary-actions,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.12);
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: #ffffff;
}

.button-primary:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-quiet {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.story-section {
  position: relative;
  padding: 92px 0;
}

.tinted {
  background:
    linear-gradient(90deg, rgba(14, 116, 144, 0.07), transparent 26%, transparent 74%, rgba(109, 91, 208, 0.08)),
    var(--mist);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 72px;
}

.story-copy {
  max-width: 720px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(var(--cyan), var(--violet), var(--green)) 1;
  padding-left: 26px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-copy p + p {
  margin-top: 20px;
}

.section-title {
  position: relative;
}

.section-title::after {
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green));
  content: "";
}

.connect-section {
  padding: 96px 0;
  background:
    linear-gradient(120deg, rgba(14, 116, 144, 0.42), transparent 36%),
    linear-gradient(250deg, rgba(109, 91, 208, 0.4), transparent 42%),
    var(--navy);
  color: #ffffff;
}

.connect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.connect-section h2 {
  color: #ffffff;
}

.connect-actions {
  justify-content: flex-end;
}

.email-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.email-link:hover {
  text-decoration-color: #ffffff;
}

.connect-section .button-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--navy);
}

.connect-section .button-primary:hover {
  border-color: #c9f1ee;
  background: #c9f1ee;
}

.connect-section .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}

.connect-section .button-secondary:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

@keyframes softShift {
  from {
    background-position: 0% 0%, 100% 0%, 0% 100%, 0 0;
  }

  to {
    background-position: 16% 8%, 86% 16%, 12% 82%, 0 0;
  }
}

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

  .intro-section {
    animation: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .story-grid,
  .connect-inner {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 30px;
  }

  .connect-inner {
    display: block;
  }

  .connect-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .nav {
    width: min(calc(100% - 28px), 1040px);
  }

  .intro-section {
    padding: 72px 0 70px;
  }

  .story-section,
  .connect-section {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .headline {
    font-size: 1.2rem;
  }

  .intro-copy,
  .story-copy p {
    font-size: 1rem;
  }

  .primary-actions,
  .connect-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .email-link {
    width: 100%;
  }

  .email-link {
    overflow-wrap: anywhere;
  }
}
