:root {
  --bg: #f5f2eb;
  --paper: #fffdf8;
  --ink: #1d2528;
  --muted: #657174;
  --line: #ded5c6;
  --accent: #0f8b78;
  --accent-dark: #09685a;
  --accent-soft: #dff4ef;
  --yellow: #f2b84b;
  --blue: #246eb9;
  --red: #cf4e42;
  --shadow: 0 22px 60px rgba(30, 37, 40, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 139, 120, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbf8f2 0, var(--bg) 42rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(16px, 4vw, 48px);
  background: rgba(251, 248, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(15, 139, 120, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(235, 227, 212, 0.72);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #ebe3d4;
}

.site-nav .nav-demo {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 22px rgba(15, 139, 120, 0.18);
}

main {
  padding: 0 clamp(16px, 4vw, 48px) 56px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 48px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-copy > p:not(.eyebrow),
.page-hero > p {
  max-width: 680px;
  font-size: 21px;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(30, 37, 40, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 24px rgba(30, 37, 40, 0.1);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.96)),
    var(--paper);
  border: 1px solid rgba(222, 213, 198, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--yellow), var(--blue));
}

.mini-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.mini-top span {
  width: 10px;
  height: 10px;
  background: #d9d0c0;
  border-radius: 50%;
}

.mini-screen {
  min-height: 260px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  color: white;
  background:
    linear-gradient(0deg, rgba(13, 45, 42, 0.88), rgba(13, 45, 42, 0.12)),
    url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.mini-screen small,
.mini-screen strong,
.mini-screen b {
  display: block;
}

.mini-screen small {
  color: rgba(255, 255, 255, 0.78);
}

.mini-screen b {
  padding: 8px 10px;
  background: var(--yellow);
  color: #33230a;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.mini-grid span {
  padding: 12px;
  background: #fbf7ee;
  border: 1px solid rgba(222, 213, 198, 0.9);
  border-radius: 8px;
  font-weight: 800;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 72px;
}

.strip strong {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    var(--ink);
  color: white;
  border-radius: 8px;
  text-align: center;
}

.section,
.page-hero,
.cta {
  max-width: 1180px;
  margin: 0 auto 72px;
}

.page-hero {
  padding-top: 76px;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
}

.section-title {
  max-width: 820px;
  margin-bottom: 22px;
}

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

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

.cards article,
.contact-card,
.feature-list article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.96)),
    var(--paper);
  border: 1px solid rgba(222, 213, 198, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(30, 37, 40, 0.05);
}

.cards article::after,
.feature-list article::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.55;
}

.cards article p:last-child,
.contact-card p:last-child,
.feature-list article p:last-child {
  margin-bottom: 0;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(15, 139, 120, 0.24);
  border-radius: 8px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: center;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
}

.workflow {
  display: grid;
  gap: 10px;
}

.workflow div {
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(222, 213, 198, 0.9);
  border-left: 7px solid var(--accent);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(30, 37, 40, 0.05);
}

.cta {
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(15, 139, 120, 0.34), rgba(36, 110, 185, 0.18)),
    var(--ink);
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta .eyebrow {
  color: #75d6c6;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pricing .highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.price-tag {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 34px;
  font-weight: 900;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 16px;
}

.contact-card h2 {
  font-size: 32px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(16px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.pricing,
  .feature-list,
  .strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a {
    justify-content: center;
  }

  .mini-screen {
    align-items: stretch;
    flex-direction: column;
    justify-content: end;
  }

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