:root {
  --emerald: #0f766e;
  --emerald-dark: #0b5f59;
  --blue: #2563eb;
  --green: #22c55e;
  --white: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --heading: #111827;
  --body: #475569;
  --muted: #64748b;
  --error: #dc2626;
  --warning: #d97706;
  --success: #16a34a;
  --info: #0ea5e9;
  --focus: #93c5fd;
  --shadow-1: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-2: 0 16px 40px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: var(--emerald-dark);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--heading);
  border-radius: 12px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--surface);
}

.section-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--emerald);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

h4 {
  font-size: 22px;
  font-weight: 600;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--body);
  font-size: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 240, 0);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 180px;
  min-width: 140px;
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--heading);
  background: var(--white);
}

.nav-toggle i {
  font-size: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  position: relative;
  color: var(--body);
  font-size: 16px;
  font-weight: 700;
}

.nav-menu a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--emerald);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-menu a[aria-current="page"],
.nav-menu a:hover {
  color: var(--emerald);
}

.nav-menu .btn {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: none;
}

.nav-menu .btn-primary,
.nav-menu .btn-primary:hover,
.nav-menu .btn-primary[aria-current="page"] {
  color: var(--white);
  background: var(--emerald);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn i,
.btn span {
  position: relative;
  z-index: 1;
}

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

.btn-primary {
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--emerald-dark);
}

.btn-secondary {
  color: var(--emerald);
  border-color: var(--emerald);
  background: var(--white);
}

.btn-secondary:hover {
  color: var(--emerald-dark);
  border-color: var(--emerald-dark);
  background: #ecfdf5;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.11), transparent 34%),
    radial-gradient(circle at 12% 20%, rgba(34, 197, 94, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  animation: hero-grid-shift 14s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: -1;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 50%;
  transform: rotate(15deg);
  animation: rotate-ring 18s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  display: grid;
  gap: 24px;
  animation: fade-up 500ms ease both;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 800;
}

.hero-proof i {
  color: var(--success);
}

.section-actions {
  margin-top: 32px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  animation: fade-up 600ms ease 100ms both;
}

.workflow-panel,
.metric-strip,
.contact-card,
.card,
.product-card,
.faq details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.workflow-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  animation: soft-float 5s ease-in-out infinite;
}

.workflow-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 20%, rgba(37, 99, 235, 0.06) 48%, transparent 72%);
  transform: translateX(-100%);
  animation: panel-sheen 4.5s ease-in-out infinite;
}

.workflow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.status-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--emerald);
  background: #ecfdf5;
  font-size: 14px;
  font-weight: 800;
}

.node-list {
  display: grid;
  gap: 14px;
}

.node {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.node::before {
  position: absolute;
  top: -15px;
  left: 36px;
  width: 2px;
  height: 16px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(15, 118, 110, 0.35));
}

.node:first-child::before {
  display: none;
}

.node:hover {
  border-color: rgba(15, 118, 110, 0.26);
  background: var(--white);
  transform: translateX(4px);
}

.icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--emerald);
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: #ecfdf5;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-box i {
  color: inherit;
  font-size: 24px;
  line-height: 1;
}

.node strong,
.card strong {
  display: block;
  color: var(--heading);
  font-size: 16px;
}

.node span,
.card span {
  color: var(--muted);
  font-size: 14px;
}

.node .icon-box,
.card .icon-box,
.product-card .icon-box,
.timeline-step .icon-box {
  color: var(--emerald);
  font-size: initial;
}

.node:nth-child(2) .icon-box,
.card:nth-child(2n) .icon-box {
  color: var(--blue);
  border-color: rgba(37, 99, 235, 0.18);
  background: #eff6ff;
}

.node:nth-child(3) .icon-box,
.card:nth-child(3n) .icon-box {
  color: var(--success);
  border-color: rgba(22, 163, 74, 0.18);
  background: #f0fdf4;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--border);
}

.metric {
  padding: 18px;
  background: var(--white);
  transition: background 180ms ease;
}

.metric:hover {
  background: #f0fdf4;
}

.metric strong {
  display: block;
  color: var(--heading);
  font-size: 24px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.persona-card {
  position: relative;
  min-height: 220px;
}

.persona-card ul,
.product-detail ul,
.contact-methods {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.persona-card li,
.product-detail li,
.contact-methods li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.persona-card li i,
.product-detail li i,
.contact-methods li i {
  color: var(--success);
  line-height: 1.6;
}

.card,
.product-card,
.contact-card {
  padding: 28px;
}

.card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  border-color: rgba(15, 118, 110, 0.22);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.card:hover .icon-box,
.product-card:hover .icon-box,
.timeline-step:hover .icon-box {
  transform: scale(1.06) rotate(-2deg);
}

.card h3,
.product-card h3 {
  margin: 18px 0 10px;
}

.card p,
.product-card p,
.contact-card p {
  color: var(--body);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list i {
  color: var(--success);
  font-size: 20px;
  line-height: 1.6;
}

.problem-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.problem-cloud span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--heading);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.problem-cloud span:hover {
  color: var(--emerald);
  border-color: rgba(15, 118, 110, 0.25);
  background: #ecfdf5;
  transform: translateY(-2px);
}

.quote-band {
  margin-top: 32px;
  padding: 28px;
  border-left: 5px solid var(--emerald);
  border-radius: 16px;
  color: var(--heading);
  background: #ecfdf5;
  font-size: 22px;
  font-weight: 700;
}

.product-card.featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card.featured:hover {
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
}

.product-card.coming {
  background: var(--surface);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 24px;
}

.mini-panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.mini-panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.mini-panel strong {
  color: var(--heading);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.timeline-step {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.timeline-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--emerald), var(--blue));
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.timeline-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.timeline-step h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.timeline-step:hover span {
  transform: scale(1.06);
  box-shadow: 0 0 0 9px rgba(37, 99, 235, 0.1);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  animation: fade-up 500ms ease both;
}

.cta-band::after {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: rotate-ring 16s linear infinite;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin: 14px 0 24px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--heading);
  font-weight: 800;
}

.faq details p {
  padding: 0 24px 22px;
}

.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--border);
  content: "/";
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--heading);
  font-size: 15px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--heading);
  background: var(--white);
  font: inherit;
  font-size: 16px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.error-message {
  min-height: 20px;
  color: var(--error);
  font-size: 14px;
}

.form-status {
  margin-top: 16px;
  color: var(--success);
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 64px 0 32px;
  color: var(--body);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--heading);
  font-size: 18px;
}

.site-footer a {
  color: var(--emerald);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-contact {
  margin-top: 14px;
  color: var(--body);
  font-size: 15px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.reveal:nth-child(3) {
  transition-delay: 120ms;
}

.reveal:nth-child(4) {
  transition-delay: 170ms;
}

.reveal:nth-child(5) {
  transition-delay: 220ms;
}

.reveal:nth-child(6) {
  transition-delay: 270ms;
}

@keyframes hero-grid-shift {
  from {
    background-position: 0 0, 0 0, center, center, center;
  }

  to {
    background-position: 24px 18px, 18px 24px, center, center, center;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes panel-sheen {
  0%,
  42% {
    transform: translateX(-100%);
  }

  72%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes rotate-ring {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 80px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-2);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .btn {
    width: 100%;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .product-detail,
  .product-card.featured {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 56px 0;
  }

  .hero-grid {
    gap: 32px;
  }

  .metric-strip,
  .timeline,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .node {
    grid-template-columns: 44px 1fr;
  }

  .node .badge {
    grid-column: 1 / -1;
  }

  .cta-band {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
