* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #07151b;
  --bg-soft: #0b1f26;
  --panel: #102b36;
  --panel-2: #172f34;
  --text: #102b2f;
  --text-muted: #587477;
  --text-soft: #eefaf3;
  --text-pale: #b9d8d1;
  --line: #d8eee9;
  --line-soft: #eef9f6;
  --brand: #19b69d;
  --brand-2: #8bd2bb;
  --brand-dark: #0b6659;
  --brand-hard: #17a585;
  --accent: #c5f283;
  --accent-2: #fff4d7;
  --danger: #e25c55;
  --shadow: 0 20px 60px rgba(10, 39, 38, 0.12);
  --max-width: 1180px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 4%, rgba(255,255,255,0.92) 0%, transparent 20%),
    radial-gradient(circle at 86% 15%, rgba(193,245,226,0.55) 0%, transparent 22%),
    linear-gradient(135deg, #eefcf9 0%, #d8f4ef 100%);
  line-height: 1.65;
  min-height: 100vh;
}

body:before {
  content: "";
  position: fixed;
  inset: -40px;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(25,182,157,0.10) 1px, transparent 1px),
    radial-gradient(circle, rgba(16,43,47,0.06) 1px, transparent 1px);
  background-position: 0 0, 14px 14px;
  background-size: 36px 36px, 36px 36px;
  opacity: 0.65;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(13,74,68,0.12);
  backdrop-filter: blur(20px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.scrolled {
  background: rgba(237,255,250,0.98);
  border-color: rgba(25,182,157,0.34);
  box-shadow: 0 7px 24px rgba(25,182,157,0.10);
}

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  font-size: 1.36rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.91rem;
  color: var(--text-muted);
}

.nav-link {
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform 180ms ease;
}

.nav-link:hover:after,
.nav-link:focus:after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 24px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(25,182,157,0.22);
}

.btn-primary:hover {
  background: var(--brand-hard);
}

.btn-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--line-soft);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.6);
  color: white;
  background: transparent;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 78% 7%, rgba(25,182,157,0.10), transparent 33%),
    linear-gradient(135deg, #eefcf9 0%, #d9f6ef 100%);
  padding: 92px 0 96px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(25,182,157,0.20);
  top: -220px;
  right: -170px;
}

.hero:after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(203,230,225,0.26);
  left: -150px;
  bottom: -150px;
}

.hero:before,
.hero:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(25,182,157,0.35);
  pointer-events: none;
}

.hero:before {
  width: 350px;
  height: 350px;
  right: -90px;
  top: -110px;
  animation: drift 7s ease-in-out infinite alternate;
}

.hero:after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -100px;
  animation: drift 5s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 60px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.3vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 800;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.hero-text {
  margin-top: 28px;
  max-width: 640px;
  font-size: 1.13rem;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--brand-dark);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--brand);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-proof {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-proof .proof-number {
  display: block;
  font-size: 1.52rem;
  line-height: 1;
  color: var(--text);
  font-weight: 800;
}

.hero-proof .proof-label {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.hero-panel {
  position: relative;
}

.hero-media-card {
  position: relative;
  background: linear-gradient(160deg, #11363b, #092327);
  border-radius: 34px;
  min-height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 26px;
}

.hero-media-card:before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  right: -130px;
  top: -150px;
}

.hero-media-card:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  left: -160px;
  bottom: -160px;
}

.media-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-pale);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
}

.media-header .chip {
  margin-left: auto;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 7px 12px;
  border-radius: 99px;
}

.status-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #ffffff;
}

.analytics-surface {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.orb-one {
  width: 330px;
  height: 330px;
  left: 16%;
  top: 11%;
  border-top-color: var(--accent-2);
  border-left-color: var(--accent-2);
}

.orb-two {
  width: 260px;
  height: 260px;
  right: 5%;
  bottom: 0%;
  border-bottom-color: var(--brand-2);
  border-right-color: var(--brand-2);
}

.simple-card {
  width: min(100%, 360px);
  position: relative;
  background: #ecfff5;
  border-radius: 24px;
  padding: 34px 30px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.3);
}

.simple-card h3 {
  margin-top: 10px;
  font-size: 1.62rem;
  line-height: 1.10;
  letter-spacing: -0.05em;
  color: var(--text);
}

.kicker {
  display: inline-block;
  font-size: 0.67rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.simple-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-list span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(25, 182, 157, 0.12);
  color: var(--text);
  border: 1px solid rgba(25, 182, 157, 0.22);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

.mini-link:hover {
  color: var(--brand-hard);
}

.logo-strip {
  background: linear-gradient(180deg, #07151b, #09252e);
  color: #a8d8cf;
}

.strip-grid {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-label {
  position: relative;
}

.strip-label:after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 2px;
  background: var(--brand);
  margin-left: 12px;
  vertical-align: middle;
}

.showcase {
  background: linear-gradient(135deg, #effcf8, #d7f0ea);
  padding: 84px 0;
  position: relative;
}

.showcase:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), transparent, var(--accent));
  opacity: 0.75;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 48px;
}

.showcase-image {
  position: relative;
}

.showcase-image:before {
  content: "";
  position: absolute;
  width: 92%;
  height: 92%;
  left: -20px;
  top: -24px;
  border-radius: 34px;
  background: repeating-linear-gradient(135deg, transparent 0 3px, rgba(25,182,157,0.12) 4px);
  border: 1px solid rgba(25,182,157,0.34);
}

.showcase-photo {
  position: relative;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid white;
  box-shadow: var(--shadow);
}

.floating-panel {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text);
  border: 1px solid rgba(16,43,47,0.12);
  box-shadow: 0 12px 30px rgba(16,43,47,0.11);
}

.panel-one {
  left: 16px;
  top: 16px;
}

.panel-two {
  right: 14px;
  bottom: 14px;
}

.panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
}

.showcase-copy h2 {
  margin-top: 14px;
}

.showcase-copy p {
  margin-top: 20px;
  color: var(--text-muted);
}

.showcase-list {
  margin-top: 28px;
  margin-bottom: 34px;
}

.showcase-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.90rem;
}

.check-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-weight: 900;
  font-size: 0.78rem;
}

.showcase-copy .btn {
  margin-top: 12px;
}

.strip-label {
  color: var(--accent);
}

.strip-items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.section {
  padding: 94px 0;
}

.section-head.centered {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head.centered p {
  margin-top: 14px;
  color: var(--text-muted);
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 3.0rem);
  letter-spacing: -0.065em;
  line-height: 1.05;
  color: var(--text);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.section-kicker:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand);
}

.services {
  background: #fdfdfc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 26px;
}

.service-card {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(20,75,70,0.04);
  min-height: 265px;
}

.service-card.featured {
  background: linear-gradient(160deg, #0d4246, #103b3b);
  border-color: #0d4246;
  color: white;
}

.service-card {
  animation: riseIn 900ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
}

.service-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  pointer-events: none;
  border: 1px solid transparent;
}

.service-card:hover:before {
  border-color: rgba(25,182,157,0.34);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 38px rgba(25,182,157,0.13);
}

.service-card.featured p,
.service-card.featured li {
  color: var(--text-pale);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(16px, 12px, 0) scale(1.03); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card.featured h3 {
  color: white;
}

.service-card.highlight-card {
  background: linear-gradient(120deg, #e8f9eb, #dff7ee);
  border-color: transparent;
}

.service-card h3 {
  margin-top: 24px;
  font-size: 1.46rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.service-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.91rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--line-soft);
}

.featured .service-icon {
  background: rgba(255,255,255,0.10);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--brand-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.featured .service-icon svg {
  stroke: var(--accent);
}

.check-list {
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  color: var(--text-muted);
  font-size: 0.82rem;
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  font-weight: 900;
}

.featured .check-list li:before {
  background: var(--accent);
  color: var(--text);
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--brand-dark);
  font-weight: 800;
}

.small-label {
  font-size: 0.70rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.20em;
  color: var(--text-muted);
}

.solutions {
  background: linear-gradient(180deg, #eefcf9, #edf9f7);
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(330px, 420px);
  align-items: stretch;
  gap: 52px;
}

.two-columns h2 {
  margin-top: 16px;
}

.lede {
  color: var(--text-muted);
  margin-top: 22px;
  font-size: 1.04rem;
}

.process-list {
  margin-top: 38px;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.step-index {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: white;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.process-step p {
  color: var(--text-muted);
}

.impact-panel {
  background: var(--bg-soft);
  color: white;
  border-radius: 24px;
  padding: 34px;
  min-height: 100%;
  box-shadow: var(--shadow);
  position: relative;
}

.impact-panel .panel-top h3 {
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-kicker.light {
  color: var(--accent);
}

.impact-panel .section-kicker.light:before {
  background: var(--accent);
}

.metric-stack {
  margin-top: 40px;
}

.metric {
  border-top: 1px solid rgba(255,255,255,0.20);
  padding: 20px 0;
}

.metric-label {
  display: block;
  font-size: 0.70rem;
  color: var(--text-pale);
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.metric-value {
  display: block;
  margin-top: 10px;
  font-size: 2.38rem;
  color: white;
  font-weight: 800;
  line-height: 1;
}

.small-text {
  display: block;
  margin-top: 8px;
  color: var(--text-pale);
  font-size: 0.76rem;
}

.cta-band {
  background: var(--bg);
  color: white;
  padding: 72px 0;
}

.cta-band .section-kicker {
  color: var(--accent);
}

.cta-band h2 {
  margin-top: 12px;
  color: white;
}

.cta-band p {
  margin-top: 18px;
  max-width: 650px;
  color: var(--text-pale);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact {
  background: #f9fbfb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(430px, 0.90fr);
  align-items: start;
  gap: 56px;
}

.contact-copy {
  margin-top: 20px;
  color: var(--text-muted);
}

.contact-facts {
  margin-top: 36px;
  display: flex;
  gap: 52px;
}

.fact-label {
  display: block;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fact-value {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--text);
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.field-row {
  margin-bottom: 16px;
}

.field-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field-row input,
.field-row textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #bfd2d2;
  background: #fbfffe;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(25,182,157,0.20);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.footer {
  background: linear-gradient(180deg, #0b1f26, #07151b);
  color: var(--text-pale);
  padding: 54px 0 24px;
}

.footer a:hover {
  color: white;
}

.footer .footer-brand .brand-text {
  color: white;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand .brand-text {
  color: white;
}

.footer-text {
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--text-pale);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-links a,
.footer-social a {
  color: var(--text-pale);
  font-size: 0.79rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 24px;
  font-size: 0.70rem;
  color: var(--text-pale);
}

.toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: var(--text);
  color: white;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.84rem;
  transform: translateY(120px);
  transition: transform 300ms ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-columns,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-copy h1 {
    font-size: clamp(2.52rem, 9vw, 4rem);
  }

  .main-nav {
    display: none;
  }

  .hero-proof {
    flex-wrap: wrap;
  }

  .service-grid {
    display: grid;
  }

  .cta-layout,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(var(--max-width) + 28px));
  }

  .nav-wrapper {
    min-height: 78px;
  }

  .hero,
  .section {
    padding: 58px 0;
  }

  .hero-copy h1 {
    line-height: 1.05;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-facts {
    flex-direction: column;
    gap: 24px;
  }

  .strip-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
