:root {
  --bg: #eaf4f3;
  --bg-deep: #cfe4e4;
  --ink: #163d57;
  --ink-soft: #355d6f;
  --primary: #2e7287;
  --primary-2: #7bb6c2;
  --accent: #e49d4c;
  --accent-deep: #c7772a;
  --cream: #fff8ec;
  --shadow: 0 18px 60px rgba(28, 75, 97, 0.12);
  --border: rgba(30, 90, 110, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, #f7fbfb 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .45;
  animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 340px; height: 340px; background: rgba(123, 182, 194, 0.55); top: -60px; left: -80px; }
.orb-2 { width: 420px; height: 420px; background: rgba(228, 157, 76, 0.18); right: -120px; top: 22%; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: rgba(46, 114, 135, 0.12); left: 20%; bottom: -120px; animation-delay: -2s; }
.texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22,61,87,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .25;
}

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

.glass {
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { color: var(--ink-soft); }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.nav {
  display: flex;
  gap: 24px;
  color: var(--ink-soft);
  font-weight: 600;
}
.nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 12px 30px rgba(46, 114, 135, 0.26);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(46, 114, 135, 0.28); }
.btn-secondary {
  color: var(--ink);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-sm { min-height: 42px; padding: 0 16px; font-size: .95rem; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 64px 0 40px;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(123, 182, 194, 0.18);
  color: var(--primary);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero h1,
.section-heading h2,
.split-copy h2,
.vision-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: .94;
  letter-spacing: -.03em;
  margin: 18px 0 18px;
}
.section-heading h2,
.split-copy h2,
.vision-card h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.lead, .split-copy p, .vision-card p, .footer-card p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat {
  border-radius: 24px;
  padding: 18px;
}
.stat span {
  display: block;
  color: var(--ink-soft);
  font-size: .88rem;
  margin-bottom: 6px;
}
.stat strong {
  font-size: 1.15rem;
}
.hero-frame {
  position: relative;
  border-radius: 28px;
  padding: 18px;
  transform: perspective(1400px) rotateY(-8deg) rotateX(2deg);
  transition: transform .45s ease;
}
.hero-frame:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }
.hero-frame::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(123,182,194,.35), rgba(228,157,76,.18));
  z-index: -1;
}
.hero-frame img {
  border-radius: 20px;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 20px;
}
.timeline-card, .benefit, .feature-item, .vision-card, .footer-card {
  border-radius: 24px;
  padding: 24px;
}
.timeline-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,157,76,.16), transparent 70%);
}
.step {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,114,135,.12), rgba(228,157,76,.22));
  color: var(--primary);
  font-weight: 800;
}
.timeline-card h3, .benefit h3, .feature-item strong, .panel-header h3, .footer-card h3 {
  font-size: 1.25rem;
  margin: 18px 0 10px;
}
.timeline-card p, .benefit p, .feature-item span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: start;
  padding: 40px 0 10px;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.feature-item strong { margin: 0; min-width: 160px; }
.split-panel {
  padding: 26px;
  border-radius: 28px;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(228,157,76,.15);
  color: var(--accent-deep);
  font-size: .84rem;
  font-weight: 700;
}
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.revenue-grid > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
}
.revenue-grid small {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.revenue-grid strong { font-size: 1.05rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.vision-section { padding: 30px 0 10px; }
.vision-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
}
.vision-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,182,194,.28), transparent 68%);
}
.site-footer { padding: 30px 0 70px; }
.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.reveal, .reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-fade { transform: translateY(0) scale(.96); }
.reveal.is-visible, .reveal-fade.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-20px,0); }
}

@media (max-width: 1080px) {
  .hero, .split-section, .benefits-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .hero { align-items: start; }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .nav { order: 3; width: 100%; justify-content: center; gap: 16px; font-size: .92rem; flex-wrap: wrap; }
  .hero, .split-section, .benefits-grid, .timeline, .stats-row, .revenue-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .hero-frame { transform: none; }
  .feature-item, .footer-card, .panel-header { flex-direction: column; align-items: start; }
  .section { width: min(100% - 24px, 1180px); }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
