:root {
  --bg: #f2f4ef;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --surface-dark: #10211f;
  --text: #112221;
  --muted: #55706c;
  --line: rgba(17, 34, 33, 0.1);
  --accent: #0d8a6d;
  --accent-soft: #dff6eb;
  --accent-deep: #0f5d4f;
  --glow: rgba(13, 138, 109, 0.16);
  --shadow: 0 30px 80px rgba(10, 26, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #ffffff 0, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 85% 20%, rgba(13, 138, 109, 0.16) 0, rgba(13, 138, 109, 0) 28%),
    linear-gradient(180deg, #eff3ea 0%, #f8f9f5 50%, #eef1eb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 120px;
  background: rgba(13, 138, 109, 0.11);
}

body::after {
  width: 260px;
  height: 260px;
  right: 40px;
  bottom: 120px;
  background: rgba(255, 181, 71, 0.1);
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(16, 33, 31, 0.08);
}

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

.brand-mark {
  width: 52px;
  height: 52px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav {
  display: inline-flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #f7fffc;
  box-shadow: 0 18px 40px rgba(13, 138, 109, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 52px rgba(13, 138, 109, 0.32);
}

.button-secondary,
.button-ghost {
  border: 1px solid rgba(17, 34, 33, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 78px 4px 62px;
  animation: rise-in 680ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.benefit-panel h2,
.pricing-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.94;
  max-width: 11ch;
}

.hero-text,
.section-heading,
.pricing-copy,
.feature-card p,
.benefit-list,
.stat-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-proof li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18a27f 0%, #ffbd59 100%);
  box-shadow: 0 0 0 6px var(--glow);
}

.hero-panel {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.glass {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.product-card {
  width: 100%;
  border-radius: 34px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(17, 34, 33, 0.18);
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.tile {
  min-height: 160px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(249, 252, 251, 0.92);
  border: 1px solid var(--line);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.tile header,
.stat-card strong,
.pricing-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tile header span,
.pricing-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tile header strong,
.feature-card h3 {
  font-size: 1.18rem;
}

.tile:hover,
.feature-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 138, 109, 0.24);
  box-shadow: 0 20px 50px rgba(10, 26, 24, 0.1);
}

.tile p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.tile-chat {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(13, 138, 109, 0.09), rgba(255, 255, 255, 0.9)),
    #f9fbfa;
}

.tile-docs,
.tile-drive {
  min-height: 132px;
}

.avatar-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.avatar-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #103532;
  color: #effaf8;
  font-size: 0.85rem;
}

.doc-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.doc-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 138, 109, 0.15), rgba(13, 138, 109, 0.45));
}

.doc-lines i:nth-child(2) {
  width: 80%;
}

.doc-lines i:nth-child(3) {
  width: 62%;
}

.progress {
  width: 100%;
  height: 14px;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(17, 34, 33, 0.08);
  overflow: hidden;
}

.progress b {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, #18a27f 0%, #ffbd59 100%);
}

.floating-metric {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 14px 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(223, 246, 235, 0.82) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(13, 138, 109, 0.14);
}

.floating-metric span {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.floating-metric small {
  color: var(--muted);
}

.floating-metric strong {
  font-family: "Space Grotesk", sans-serif;
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  line-height: 1;
}

.partners,
.features,
.benefits,
.pricing {
  padding: 44px 0;
}

.partners {
  display: grid;
  gap: 18px;
}

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

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 34, 33, 0.08);
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

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

.feature-card,
.pricing-card,
.dark-panel,
.stat-card {
  border-radius: 28px;
}

.feature-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 34, 33, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.dark-panel {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 189, 89, 0.16), transparent 28%),
    linear-gradient(180deg, #112a28 0%, #0d1d1c 100%);
  color: #eff8f6;
  box-shadow: var(--shadow);
}

.dark-panel .eyebrow,
.dark-panel .benefit-list {
  color: rgba(239, 248, 246, 0.72);
}

.benefit-list {
  margin: 24px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 28px 24px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.stat-card strong {
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.stat-card p {
  margin: 0;
  line-height: 1.7;
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(223, 246, 235, 0.82) 100%);
  border: 1px solid rgba(17, 34, 33, 0.08);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  max-width: 14ch;
}

.pricing-copy {
  max-width: 54ch;
  margin: 16px 0 0;
  line-height: 1.7;
}

.price-box {
  min-width: 250px;
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 24px;
  border-radius: 24px;
  background: #0f2321;
  color: #f5fffb;
}

.price-box strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.price-box span {
  color: rgba(245, 255, 251, 0.7);
  margin-bottom: 12px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 1080px) {
  .hero,
  .benefits,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .topbar,
  .nav,
  .hero-actions,
  .pricing-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 10px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .workspace-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .tile-chat {
    grid-row: span 1;
  }

  .floating-metric {
    grid-template-columns: 1fr;
  }

  .price-box {
    width: 100%;
  }
}
