:root {
  --bg-deep: #0d1b1b;
  --bg-hero: #132523;
  --bg-soft: #eaf0e6;
  --bg-warm: #f6efe5;
  --bg-card: rgba(255, 255, 255, 0.08);
  --surface: #ffffff;
  --surface-soft: #f7f4ee;
  --text: #10201c;
  --text-muted: #4a5c57;
  --text-light: #d9e7df;
  --heading-light: #f8fcf9;
  --line: rgba(16, 32, 28, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --accent: #d06e2f;
  --accent-dark: #9d4d16;
  --accent-soft: #f1c6a7;
  --green: #8dbc77;
  --green-deep: #26473e;
  --shadow: 0 24px 70px rgba(13, 27, 27, 0.14);
  --shadow-strong: 0 30px 90px rgba(5, 17, 15, 0.28);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(208, 110, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #0d1b1b 0%, #152825 34%, #f6efe5 34%, #f6efe5 68%, #eaf0e6 68%, #eaf0e6 100%);
}

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -52px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  z-index: 100;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(13, 27, 27, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--heading-light);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ee9a62, var(--accent));
  color: #fff9f4;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(208, 110, 47, 0.34);
}

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

.brand-copy strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: rgba(217, 231, 223, 0.82);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-light);
  font-size: 0.96rem;
}

.site-nav > a:not(.button) {
  color: rgba(217, 231, 223, 0.84);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--heading-light);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-small {
  padding: 12px 18px;
}

.button-primary {
  background: linear-gradient(135deg, #ee9a62, var(--accent));
  color: #fffaf6;
  box-shadow: 0 16px 34px rgba(208, 110, 47, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--heading-light);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  padding: 86px 0 94px;
  color: var(--heading-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  max-width: 54ch;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(235, 246, 239, 0.92);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 60ch;
  color: rgba(217, 231, 223, 0.88);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.demo-note {
  margin: 16px 0 0;
  color: #ffd3b5;
  font-weight: 600;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 252, 249, 0.92);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
}

.panel-frame {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(141, 188, 119, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-header h2 {
  margin: 4px 0 0;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.panel-label {
  margin: 0;
  color: rgba(217, 231, 223, 0.72);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pill {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(141, 188, 119, 0.16);
  color: #ddf3d4;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.signal-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(5, 17, 15, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(238, 154, 98, 0.14);
  color: #ffd9bf;
  font-weight: 700;
  font-size: 0.82rem;
}

.signal-card h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.signal-card p {
  margin: 0;
  color: rgba(217, 231, 223, 0.82);
  line-height: 1.65;
  font-size: 0.94rem;
}

.lifecycle-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.lifecycle-strip div {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(248, 252, 249, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section {
  padding: 90px 0;
}

.section-problem {
  background: var(--bg-warm);
}

.section-workflow {
  background:
    linear-gradient(180deg, rgba(13, 27, 27, 0.03), rgba(13, 27, 27, 0.08)),
    var(--surface-soft);
}

.section-control {
  background: var(--bg-soft);
}

.section-coverage {
  background:
    radial-gradient(circle at top right, rgba(141, 188, 119, 0.16), transparent 20%),
    linear-gradient(180deg, #f2ece1, #f7f4ee);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.problem-grid,
.coverage-grid {
  display: grid;
  gap: 20px;
}

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

.coverage-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 32, 28, 0.06);
}

.card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(208, 110, 47, 0.16), rgba(141, 188, 119, 0.18));
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.94rem;
}

.coverage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accordion-item {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 32, 28, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.accordion-item:hover {
  border-color: rgba(208, 110, 47, 0.22);
}

.accordion-item.is-open {
  background: #fffdf9;
  border-color: rgba(208, 110, 47, 0.22);
  box-shadow: 0 28px 80px rgba(13, 27, 27, 0.12);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  width: 100%;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.accordion-trigger-main {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.accordion-title,
.coverage-card h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.accordion-title {
  margin: 0;
  line-height: 1.35;
}

.accordion-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.accordion-panel {
  padding: 0 28px 24px;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel p,
.coverage-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.workflow-step {
  position: relative;
  min-height: 228px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 28, 0.08);
  box-shadow: var(--shadow);
}

.workflow-index {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dce8cc, #f6d5bc);
  color: var(--green-deep);
  font-weight: 800;
}

.workflow-step h3 {
  margin: 18px 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.workflow-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.control-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: start;
}

.leadership-list {
  display: grid;
  gap: 16px;
}

.leadership-list article {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 32, 28, 0.08);
}

.leadership-list h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.leadership-list p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.control-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #16302d, #122624);
  color: var(--heading-light);
  box-shadow: var(--shadow-strong);
}

.panel-header.alt h2 {
  max-width: 16ch;
}

.control-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.control-card {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.control-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(217, 231, 223, 0.86);
  line-height: 1.65;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ee9a62;
  transform: translateY(-50%);
}

.cta-band {
  background:
    radial-gradient(circle at top left, rgba(238, 154, 98, 0.18), transparent 24%),
    linear-gradient(135deg, #10201c, #1b332f);
  color: var(--heading-light);
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-copy .section-label {
  color: #ffd6bf;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin: 14px 0 0;
  max-width: 60ch;
  color: rgba(217, 231, 223, 0.84);
  line-height: 1.8;
  font-size: 1.03rem;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  background: #091313;
  color: rgba(217, 231, 223, 0.74);
  padding: 26px 0 38px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-shell p {
  margin: 0;
  max-width: 64ch;
  line-height: 1.7;
}

.footer-shell a {
  color: #ffd3b5;
  font-weight: 700;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffd0a8;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .control-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-grid,
  .lifecycle-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, #0d1b1b 0%, #152825 26%, #f6efe5 26%, #f6efe5 64%, #eaf0e6 64%, #eaf0e6 100%);
  }

  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(13, 27, 27, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    padding: 54px 0 72px;
  }

  .hero h1 {
    max-width: none;
  }

  .problem-grid,
  .workflow-grid,
  .coverage-grid,
  .signal-grid,
  .lifecycle-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .panel-header,
  .footer-shell {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .panel-frame,
  .control-panel,
  .cta-shell,
  .accordion-item,
  .workflow-step,
  .coverage-card {
    padding: 22px;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .brand-copy span {
    display: none;
  }
}
