:root {
  --navy-950: #081627;
  --navy-900: #10243b;
  --navy-800: #163455;
  --slate-700: #42556d;
  --slate-500: #71849d;
  --mist-100: #eef4f8;
  --mist-50: #f7fafc;
  --white: #ffffff;
  --green-500: #1ea77b;
  --green-600: #168664;
  --line: rgba(12, 32, 54, 0.1);
  --shadow-lg: 0 24px 60px rgba(9, 27, 46, 0.14);
  --shadow-md: 0 16px 34px rgba(9, 27, 46, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  background:
    radial-gradient(circle at top left, rgba(30, 167, 123, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(22, 52, 85, 0.12), transparent 36%),
    linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%);
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 252, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--green-500));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-600);
}

.brand__name {
  font-size: 1rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-950);
  margin: 5px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--navy-950);
  background: rgba(16, 36, 59, 0.07);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--green-500));
  box-shadow: var(--shadow-md);
}

.button--secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 36, 59, 0.1);
}

.button--ghost {
  color: var(--green-600);
  background: rgba(30, 167, 123, 0.1);
}

.hero,
.page-hero {
  padding: 5.5rem 0 3rem;
}

.hero__grid,
.page-hero__grid,
.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(12, 1fr);
}

.hero__copy,
.page-hero__copy,
.split__copy {
  grid-column: span 7;
}

.hero__panel,
.page-hero__panel,
.split__panel {
  grid-column: span 5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.product-identity {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.4rem 0.6rem 0.4rem 0.45rem;
  margin: 0.9rem 0 0.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 59, 0.12);
  max-width: 100%;
}

.product-identity__logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.3rem;
  box-shadow: 0 10px 22px rgba(9, 27, 46, 0.08);
}

.product-identity__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.product-identity__text strong {
  font-size: 1.05rem;
  color: var(--navy-900);
}

.product-identity__text span {
  font-size: 0.85rem;
  color: var(--slate-500);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-family: "Georgia", "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--slate-700);
}

.hero__lede,
.page-hero__lede {
  max-width: 62ch;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 36, 59, 0.08);
  color: var(--slate-700);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-card,
.card,
.metric,
.highlight,
.process-step,
.blog-card,
.contact-card,
.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 36, 59, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-card {
  padding: 1.7rem;
}

.ecosystem-orbit {
  position: relative;
  min-height: 420px;
}

.ecosystem-orbit__ring {
  position: absolute;
  inset: 50%;
  width: 310px;
  height: 310px;
  margin: -155px 0 0 -155px;
  border-radius: 50%;
  border: 1px dashed rgba(16, 36, 59, 0.18);
  animation: slow-rotate 24s linear infinite;
}

.ecosystem-orbit__center,
.ecosystem-orbit__node {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 36, 59, 0.08);
}

.ecosystem-orbit__center {
  inset: 50%;
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
}

.ecosystem-orbit__center img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.ecosystem-orbit__center strong {
  display: block;
  margin-top: 0.25rem;
}

.ecosystem-orbit__node {
  width: 112px;
  min-height: 112px;
  padding: 0.8rem;
  text-align: center;
}

.ecosystem-orbit__node img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 0.45rem;
}

.ecosystem-orbit__node span {
  display: block;
  font-size: 0.84rem;
  color: var(--slate-700);
  line-height: 1.3;
}

.ecosystem-orbit__node--top {
  top: 0;
  left: 50%;
  margin-left: -56px;
}

.ecosystem-orbit__node--right {
  top: 24%;
  right: 0;
}

.ecosystem-orbit__node--bottom-right {
  right: 10%;
  bottom: 2%;
}

.ecosystem-orbit__node--bottom-left {
  left: 10%;
  bottom: 2%;
}

.ecosystem-orbit__node--left {
  top: 24%;
  left: 0;
}

.stack {
  display: grid;
  gap: 1rem;
}

.hero-stat-grid,
.card-grid,
.blog-grid,
.contact-grid,
.metric-grid,
.badge-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.showcase-grid,
.platform-flow {
  display: grid;
  gap: 1.2rem;
}

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

.showcase-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 36, 59, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.showcase-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.showcase-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(16, 36, 59, 0.08);
  margin-bottom: 1rem;
}

.showcase-card h3 {
  margin-bottom: 0.7rem;
}

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

.platform-step {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 36, 59, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.35rem;
}

.metric {
  padding: 1.2rem;
}

.metric__value {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--navy-900);
}

.metric__label {
  color: var(--slate-700);
  font-size: 0.92rem;
}

.section {
  padding: 1.25rem 0 4rem;
}

.section--tight {
  padding-top: 0;
}

.section__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.9rem;
}

.card,
.blog-card,
.contact-card,
.highlight,
.process-step,
.panel,
.article-layout {
  padding: 1.45rem;
}

.article-layout {
  display: grid;
  gap: 2rem;
}

.article-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 36, 59, 0.08);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--slate-500);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  margin: 0.9rem 0 1rem;
  padding-left: 1.25rem;
  color: var(--slate-700);
}

.prose li + li {
  margin-top: 0.4rem;
}

.article-disclaimer {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(16, 36, 59, 0.1);
  background: rgba(30, 167, 123, 0.08);
  color: var(--slate-700);
}

.article-disclaimer strong {
  color: var(--navy-900);
}

.card ul,
.panel ul,
.process-step ul,
.blog-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--slate-700);
}

.kicker {
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.highlight {
  position: relative;
  overflow: hidden;
}

.product-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.6rem 0 1rem;
}

.product-card-head h3 {
  margin: 0;
}

.product-card-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem;
  box-shadow: 0 10px 24px rgba(9, 27, 46, 0.08);
}

.highlight::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(30, 167, 123, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(30, 167, 123, 0.1);
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.comparison th,
.comparison td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.comparison th {
  background: rgba(16, 36, 59, 0.95);
  color: var(--white);
}

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step__number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 167, 123, 0.12);
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 700;
  color: var(--navy-900);
}

.field input,
.field textarea,
.field select {
  border-radius: 14px;
  border: 1px solid rgba(16, 36, 59, 0.12);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.96);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.small-note {
  font-size: 0.9rem;
  color: var(--slate-500);
}

.alert {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.9rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.alert--success {
  background: rgba(30, 167, 123, 0.12);
  border-color: rgba(30, 167, 123, 0.34);
  color: #0d5f46;
}

.alert--error {
  background: rgba(176, 34, 34, 0.1);
  border-color: rgba(176, 34, 34, 0.25);
  color: #7c1f1f;
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.trial-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trial-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.trial-steps li {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(16, 36, 59, 0.06);
  color: var(--slate-700);
}

.trial-steps li.is-active {
  background: rgba(30, 167, 123, 0.16);
  color: #0f6d51;
  font-weight: 700;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 36, 59, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(30, 167, 123, 0.12);
  color: var(--green-600);
}

.social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-social {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.5rem;
}

.social-links--footer {
  gap: 0.5rem;
}

.social-links--footer .social-link {
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

.social-links--footer .social-link svg {
  width: 18px;
  height: 18px;
}

.social-links--footer .social-link span {
  display: none;
}

.social-contact {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.45rem;
}

.footer-meta {
  margin-top: 1.25rem;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

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

@keyframes slow-rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .hero__copy,
  .page-hero__copy,
  .split__copy,
  .hero__panel,
  .page-hero__panel,
  .split__panel {
    grid-column: span 12;
  }

  .card-grid--3,
  .badge-grid,
  .blog-grid,
  .showcase-grid,
  .hero-stat-grid,
  .metric-grid,
  .process-grid,
  .platform-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-orbit {
    min-height: 480px;
  }
}

@media (max-width: 780px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

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

  .header-cta {
    display: none;
  }

  .card-grid--2,
  .card-grid--3,
  .contact-grid,
  .trial-grid,
  .trial-two-col,
  .badge-grid,
  .blog-grid,
  .showcase-grid,
  .hero-stat-grid,
  .metric-grid,
  .process-grid,
  .platform-flow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .ecosystem-orbit {
    min-height: 560px;
  }

  .ecosystem-orbit__ring {
    width: 250px;
    height: 250px;
    margin: -125px 0 0 -125px;
  }

  .ecosystem-orbit__center {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
  }

  .ecosystem-orbit__node {
    width: 96px;
    min-height: 96px;
    padding: 0.7rem;
  }

  .ecosystem-orbit__node img {
    width: 44px;
    height: 44px;
  }

  .product-card-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .product-identity__logo {
    width: 78px;
    height: 78px;
  }

  .product-identity__text strong {
    font-size: 0.98rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
  background-color: #20b358;
}

@media (max-width: 780px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
