:root {
  --ink: #10233f;
  --muted: #5e6b7f;
  --line: rgba(16, 35, 63, 0.14);
  --paper: #fbf7ef;
  --mist: #edf6f2;
  --blue: #1e4b7a;
  --green: #2f8b63;
  --amber: #d99435;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(16, 35, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 139, 99, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(217, 148, 53, 0.18), transparent 24rem),
    linear-gradient(135deg, #fffdf8 0%, #f4f8f2 46%, #eaf3f5 100%);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

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

.brand-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 9px solid var(--green);
  border-top-color: var(--amber);
  border-radius: 50% 50% 44% 44%;
  box-shadow: inset 0 0 0 4px var(--paper);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.hero,
.section,
.workflow,
.cta {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding: 58px 0 92px;
}

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

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

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

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

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

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

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(47, 139, 99, 0.24);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel::before {
  position: absolute;
  inset: 42px auto auto -34px;
  width: 68px;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber), var(--green));
  content: "";
  opacity: 0.8;
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 6px 4px 16px;
}

.panel-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(16, 35, 63, 0.2);
}

.panel-grid {
  display: grid;
  gap: 14px;
}

.metric-card,
.material-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.metric-card p,
.material-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong,
.material-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.metric-card span {
  color: var(--muted);
  line-height: 1.55;
}

.metric-card.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.metric-card.accent p,
.metric-card.accent span {
  color: rgba(255, 255, 255, 0.74);
}

.material-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 18px;
  align-items: center;
}

.material-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  list-style: none;
}

.material-card li {
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--mist);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 840px;
}

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

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.72);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--green);
  font-weight: 800;
}

.feature-card p,
.workflow p,
.cta p {
  color: var(--muted);
  line-height: 1.7;
}

.workflow {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 42px;
  padding: 76px 0;
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
}

.step p {
  margin-bottom: 0;
}

.cta {
  margin-bottom: 40px;
  padding: 54px;
  border-radius: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.94), rgba(30, 75, 122, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(217, 148, 53, 0.28), transparent 24rem);
}

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

.cta p {
  max-width: 700px;
  margin-bottom: 28px;
}

.cta .button.primary {
  color: var(--ink);
  background: var(--paper);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(217, 148, 53, 0.72);
  outline-offset: 4px;
}

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

  .hero {
    padding-top: 36px;
  }

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

  .feature-index {
    margin-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    width: min(100% - 28px, 1160px);
  }

  .nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .section,
  .workflow,
  .cta {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    gap: 34px;
    padding-bottom: 56px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    border-radius: 26px;
    padding: 14px;
  }

  .hero-panel::before {
    display: none;
  }

  .material-card {
    grid-template-columns: 1fr;
  }

  .section,
  .workflow {
    padding: 48px 0;
  }

  .cta {
    padding: 34px 22px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
