:root {
  --bg: #fbf8f5;
  --surface: #ffffff;
  --surface-soft: #fff1eb;
  --text: #063f3d;
  --muted: #5f7371;
  --line: #dbe8e5;
  --primary: #006b67;
  --primary-dark: #004f4c;
  --secondary: #ff7662;
  --secondary-soft: #ffe1d9;
  --accent: #fff4ee;
  --dark: #003f3d;
  --dark-soft: #075f5a;
  --success: #10b981;
  --shadow: 0 20px 60px rgba(0, 91, 87, 0.14);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.narrow {
  width: min(100% - 32px, 820px);
}

.section {
  padding: 96px 0;
}

.section-soft {
  padding: 88px 0;
  background: linear-gradient(135deg, #fffaf7 0%, #fff1eb 100%);
}

.section-dark {
  padding: 88px 0;
  background: radial-gradient(circle at top left, rgba(255, 118, 98, 0.22), transparent 34%),
              linear-gradient(135deg, #003f3d, #002d2b);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
}

.brand-text {
  font-size: 1.15rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 91, 87, 0.18));
}

.footer-logo {
  width: 48px;
  height: 48px;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--primary-dark);
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary.light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    radial-gradient(circle at top right, rgba(255, 118, 98, 0.22), transparent 30%),
    radial-gradient(circle at 20% 28%, rgba(0, 107, 103, 0.18), transparent 36%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.hero h1,
.section-heading h2,
.split h2,
.cta-card h2,
.narrow h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

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

.hero-description {
  margin: 24px 0 0;
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.hero-card {
  position: relative;
  min-height: 540px;
}

.logo-orbit {
  position: absolute;
  top: -16px;
  left: 0;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 107, 103, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.logo-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 118, 98, 0.35);
}

.logo-orbit img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}


.phone-panel {
  width: min(100%, 380px);
  margin-left: auto;
  margin-top: 72px;
  padding: 24px;
  border-radius: 36px;
  background: linear-gradient(180deg, #006b67, #003f3d);
  color: #fff;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 110px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 28px;
}

.chat-row {
  max-width: 86%;
  margin: 12px 0;
  padding: 13px 15px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.chat-row.incoming {
  background: rgba(255,255,255,0.12);
  color: #fff7f3;
}

.chat-row.outgoing {
  margin-left: auto;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.dashboard-panel {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: #fffaf7;
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.split h2,
.narrow h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p:not(.eyebrow),
.narrow p,
.split p,
.cta-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: #c9e3df;
}

.cards {
  display: grid;
  gap: 24px;
}

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

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.product-card {
  min-height: 100%;
}

.product-card.featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 24px 70px rgba(124, 58, 237, 0.16);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--accent);
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card-subtitle {
  color: var(--muted);
  font-weight: 600;
}

.card ul,
.visual-card ul {
  padding-left: 20px;
  color: #45615f;
}

.card li,
.visual-card li {
  margin: 9px 0;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.feature-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.feature-list span {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
}

.visual-card {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-card h3 {
  margin-top: 0;
}

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

.step {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.segments span {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff7f3;
  font-weight: 800;
}

.mini-card h3 {
  margin-bottom: 10px;
}

.mini-card p {
  color: var(--muted);
}

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

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-section {
  padding: 96px 0;
  background: var(--bg);
}

.cta-card {
  padding: 64px 32px;
  border-radius: 36px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 118, 98, 0.28), transparent 30%),
    linear-gradient(135deg, #003f3d, #006b67);
  box-shadow: var(--shadow);
}

.cta-card .eyebrow {
  color: #a5f3fc;
}

.cta-card p {
  max-width: 760px;
  margin-inline: auto;
  color: #dbeafe;
}

.site-footer {
  padding: 48px 0 24px;
  background: #0f172a;
  color: #c9e3df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 32px;
}

.footer-brand {
  color: #fff;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer a {
  margin: 8px 0;
  color: #c9e3df;
}

.copyright {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #94a3b8;
  font-size: 0.92rem;
}

@media (max-width: 980px) {

  .logo-orbit {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto -34px;
    width: 190px;
    height: 190px;
  }

  .logo-orbit img {
    width: 144px;
    height: 144px;
  }
  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .dashboard-panel {
    position: relative;
    bottom: auto;
    margin-top: 18px;
  }

  .cards.three,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section,
  .section-soft,
  .section-dark,
  .cta-section {
    padding: 68px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding-top: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .dashboard-panel,
  .cards.three,
  .steps {
    grid-template-columns: 1fr;
  }

  .phone-panel {
    margin-inline: auto;
    margin-top: 48px;
  }

  .cta-card {
    padding: 44px 20px;
  }
}
