:root {
  --ink: #1E4178;
  --mist: #EDF1F7;
  --peach: #F5BBA0;
  --snow: #FAF9FC;
  --steel: #9BB6D3;
  --nav-height: 120px;
  --shadow: 0 18px 50px rgba(30, 65, 120, 0.18);
  --focus: #0b2a52;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 15% 10%, #FFFFFF 0%, var(--mist) 45%, var(--snow) 100%);
  overflow-x: hidden;
  padding-top: var(--nav-height);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(30, 65, 120, 0.2);
  z-index: 20;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 10;
  background: rgba(250, 249, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 65, 120, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-logo {
  height: 84px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(30, 65, 120, 0.18);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--peach);
}

.hero {
  position: relative;
  padding: 110px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 14px;
  letter-spacing: -0.6px;
  line-height: 1.12;
  max-width: 18ch;
  text-wrap: balance;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(30, 65, 120, 0.86);
  margin: 0 0 26px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.btn.secondary {
  border-color: rgba(30, 65, 120, 0.2);
  background: white;
}

.btn-email {
  color: #000;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  background: white;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -30% -40% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 187, 160, 0.45), transparent 60%);
  border-radius: 50%;
}

.hero-card h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.stock-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(30, 65, 120, 0.12);
  box-shadow: 0 14px 30px rgba(30, 65, 120, 0.12);
  margin-bottom: 18px;
}

.stock-caption {
  margin: 0 0 18px;
  color: rgba(30, 65, 120, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.hero-bullets {
  display: grid;
  gap: 14px;
  font-size: 15px;
  color: rgba(30, 65, 120, 0.75);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(155, 182, 211, 0.22);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--outline::before,
.section--outline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 65, 120, 0.15), transparent);
}

.section--outline::before {
  top: 0;
}

.section--outline::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(30, 65, 120, 0.1), transparent);
}

.section--mist {
  background: linear-gradient(180deg, rgba(237, 241, 247, 0.9), rgba(250, 249, 252, 0.95));
}

.section--snow {
  background: #FAF9FC;
}

.section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
}

.section-subtitle {
  margin: 0 0 40px;
  color: rgba(30, 65, 120, 0.76);
  max-width: 640px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.card {
  background: white;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(30, 65, 120, 0.08);
  box-shadow: 0 16px 38px rgba(30, 65, 120, 0.08);
}

.card h4 {
  margin: 14px 0 10px;
}

.card p {
  margin: 0;
  color: rgba(30, 65, 120, 0.7);
  line-height: 1.6;
  font-size: 15px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(30, 65, 120, 0.08);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.panel {
  background: linear-gradient(140deg, white, var(--mist));
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(30, 65, 120, 0.82);
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--peach);
  margin-top: 6px;
}

.accent {
  background: linear-gradient(120deg, rgba(245, 187, 160, 0.5), transparent);
  padding: 4px 6px;
  border-radius: 8px;
}

.cta {
  text-align: center;
  background: var(--ink);
  color: white;
  border-radius: 30px;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 187, 160, 0.5), transparent 65%);
  top: -60px;
  right: -60px;
}

.cta h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
}

.cta p {
  margin: 0 auto 24px;
  max-width: 640px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

footer {
  padding: 40px 0 60px;
  color: rgba(30, 65, 120, 0.7);
  font-size: 14px;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.shape-a {
  width: 220px;
  height: 220px;
  background: rgba(155, 182, 211, 0.35);
  top: -40px;
  right: -60px;
}

.shape-b {
  width: 160px;
  height: 160px;
  background: rgba(245, 187, 160, 0.32);
  bottom: -40px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-shape {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  :root { --nav-height: 104px; }
  .nav-links { display: none; }
  .hero { padding-top: 70px; }
  .cta-row { justify-content: center; }
}
