:root {
  --ink: #13201c;
  --muted: #4d6159;
  --paper: #f3f6f2;
  --leaf: #1f6f54;
  --leaf-deep: #0f3f31;
  --glow: #9fd7b8;
  --line: rgba(19, 32, 28, 0.12);
  --shadow: 0 28px 80px rgba(15, 63, 49, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", "Apple SD Gothic Neo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(159, 215, 184, 0.55), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(31, 111, 84, 0.18), transparent 45%),
    linear-gradient(180deg, #eef5ef 0%, var(--paper) 42%, #e7eee8 100%);
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 32, 28, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 28, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

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

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 22px 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--leaf-deep);
}

main {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px 72px;
}

.hero {
  min-height: min(78vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lede {
  margin: 22px 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn.primary {
  background: var(--leaf-deep);
  color: #f4fbf7;
}

.btn.primary:hover {
  background: var(--leaf);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.solutions {
  padding-top: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.solution {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.product-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
}

.solution-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.solution-copy > p {
  margin: 14px 0 0;
  max-width: 36rem;
  line-height: 1.7;
  color: var(--muted);
}

.solution-copy ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: var(--ink);
  font-weight: 600;
}

.solution-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.solution-panel {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(15, 63, 49, 0.96), rgba(31, 111, 84, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(159, 215, 184, 0.45), transparent 40%);
  box-shadow: var(--shadow);
  color: #eef8f2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.panel-glow {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 215, 184, 0.55), transparent 68%);
}

.panel-mark {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.panel-sub {
  position: relative;
  margin: 10px 0 0;
  color: rgba(238, 248, 242, 0.78);
  font-weight: 600;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 22px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .solution {
    grid-template-columns: 1fr;
  }

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

  .nav {
    gap: 12px;
    font-size: 0.85rem;
  }
}
