/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  color: #0f1f17;
  background: #f7faf8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  color: #0b3d2e;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
  color: #334a3f;
}

/* ---------- Layout ---------- */
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #0b3d2e;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  z-index: 100;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  background: rgba(247, 250, 248, 0.85);
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: #0b3d2e;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: #334a3f;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: #0b3d2e;
}
.nav-links .cta {
  background: #0b3d2e;
  color: #fff;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-links .cta:hover {
  background: #114e3a;
  color: #fff;
}

@media (max-width: 720px) {
  .nav-links {
    gap: 0.9rem;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn-primary {
  background: #0b3d2e;
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(11, 61, 46, 0.55);
}
.btn-primary:hover {
  background: #114e3a;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #0b3d2e;
  border: 1.5px solid rgba(11, 61, 46, 0.2);
}
.btn-ghost:hover {
  background: rgba(11, 61, 46, 0.06);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(34, 197, 94, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 30%, rgba(11, 61, 46, 0.08), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #22a06b;
  margin: 0 0 0.7rem;
}
.hero-copy h1 .accent {
  background: linear-gradient(90deg, #22c55e, #0b3d2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 1.1rem;
  max-width: 56ch;
  color: #3a544a;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Hero art */
.hero-art {
  position: relative;
  height: 380px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}
.orb-1 {
  width: 240px;
  height: 240px;
  background: #22c55e;
  top: 0;
  right: 20px;
}
.orb-2 {
  width: 180px;
  height: 180px;
  background: #0b3d2e;
  bottom: 30px;
  left: 0;
  opacity: 0.35;
}
.orb-3 {
  width: 140px;
  height: 140px;
  background: #84e1bc;
  top: 130px;
  left: 80px;
}
.card-stack {
  position: absolute;
  inset: 0;
}
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.08);
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(11, 61, 46, 0.25);
  font-size: 0.92rem;
  font-weight: 600;
  color: #0b3d2e;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 6s ease-in-out infinite;
}
.float-card .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}
.float-card .dot-blue {
  background: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}
.float-card .dot-purple {
  background: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18);
}
.f1 {
  top: 40px;
  left: 30px;
}
.f2 {
  top: 150px;
  right: 20px;
  animation-delay: -2s;
}
.f3 {
  bottom: 40px;
  left: 80px;
  animation-delay: -4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 880px) {
  .hero-art {
    height: 320px;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.section-alt {
  background: #fff;
  border-top: 1px solid rgba(11, 61, 46, 0.06);
  border-bottom: 1px solid rgba(11, 61, 46, 0.06);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-sub {
  color: #4a6358;
  font-size: 1.05rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.6rem;
  color: #334a3f;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

/* Feature cards */
.feature-card {
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 30px 60px -30px rgba(11, 61, 46, 0.18);
  position: relative;
  overflow: hidden;
}
.feature-card .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0b3d2e;
  background: rgba(34, 197, 94, 0.15);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.auto-card {
  background:
    radial-gradient(400px 200px at 80% 0%, rgba(34, 197, 94, 0.22), transparent 60%),
    #fff;
  min-height: 240px;
}
.finance-card {
  background:
    radial-gradient(360px 200px at 0% 0%, rgba(59, 130, 246, 0.18), transparent 60%),
    #fff;
}
.meet-card {
  background:
    radial-gradient(360px 200px at 100% 100%, rgba(139, 92, 246, 0.18), transparent 60%),
    #fff;
}

/* Tiles */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 880px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.tile {
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.08);
  padding: 1.6rem;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(11, 61, 46, 0.18);
}
.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  color: #0b3d2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.tile p {
  margin: 0;
}

/* Finance chart mock */
.chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  margin: 0.5rem 0 1.4rem;
}
.chart span {
  flex: 1;
  background: linear-gradient(180deg, #22c55e, #0b3d2e);
  border-radius: 6px 6px 2px 2px;
  height: var(--h);
}

/* Meeting mock */
.meet-mock {
  background: #f3f7f4;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 0.5rem 0 1.3rem;
}
.bar {
  height: 8px;
  background: rgba(11, 61, 46, 0.08);
  border-radius: 999px;
  margin: 6px 0;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #8b5cf6, #22c55e);
  border-radius: 999px;
}
.meet-line {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-style: italic;
  color: #4a6358;
}

/* Mission */
.mission {
  background: linear-gradient(135deg, #0b3d2e 0%, #114e3a 100%);
}
.mission-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mission .eyebrow {
  color: #84e1bc;
}
.mission h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

/* Contact */
.contact-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.email-btn {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: #0b3d2e;
  color: #cfeadd;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-inner p {
  margin: 0;
  color: #cfeadd;
  font-size: 0.92rem;
}
.muted {
  opacity: 0.7;
}
