:root {
  color-scheme: light;
  --ink: #10231f;
  --muted: #5f6f6a;
  --line: #dbe6e2;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --brand: #0b6b57;
  --brand-dark: #073f35;
  --accent: #d79b22;
  --accent-soft: #fff3d6;
  --danger-soft: #fff7ed;
  --shadow: 0 18px 45px rgba(15, 35, 31, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfdfc;
  color: var(--ink);
  line-height: 1.6;
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 7%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand-dark);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #29443d;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: 88px 7% 64px;
  background:
    linear-gradient(135deg, rgba(7, 63, 53, 0.96), rgba(13, 93, 78, 0.92)),
    radial-gradient(circle at 90% 10%, rgba(215, 155, 34, 0.35), transparent 34%);
  color: #ffffff;
}

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

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

.company-line {
  max-width: 660px;
  margin: 0 0 20px;
  color: #ffe2a1;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 20px 0 10px;
  color: #e8fffa;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
}

.hero-copy,
.page-hero p {
  max-width: 690px;
  color: #d8ebe7;
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary,
.button.light {
  background: var(--accent);
  color: #1f1706;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

.button.outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.button.text-button {
  align-self: flex-start;
  min-height: 40px;
  margin-top: 20px;
  padding: 9px 13px;
  background: #eef8f5;
  color: var(--brand-dark);
  border-color: #cfe4dd;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.hero-panel div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.metric {
  display: block;
  color: #ffe2a1;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 72px 7%;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.disclosure h2,
.cta-section h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
}

.muted {
  background: var(--soft);
}

.grid,
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 1.1rem;
}

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

.step-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #7a4d05;
  font-weight: 900;
}

.disclosure {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  background: var(--danger-soft);
  border-top: 1px solid #fed7aa;
  border-bottom: 1px solid #fed7aa;
}

.disclosure p:last-child {
  margin: 0;
  color: #5b3715;
  font-weight: 700;
}

.cta-section {
  padding: 64px 7%;
  text-align: center;
  background: var(--brand-dark);
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
}

footer {
  padding: 26px 7%;
  background: #071d19;
  color: #d7e7e2;
  text-align: center;
}

.page-hero {
  padding: 72px 7%;
  background: var(--brand-dark);
  color: #ffffff;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 800;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.screenshot-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  border: 1px dashed #8fb3aa;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef8f5);
  color: var(--brand);
  font-weight: 800;
  text-align: center;
}

.content-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.content-panel h2 {
  margin-top: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.content-panel p {
  color: var(--muted);
}

.content-panel a {
  color: var(--brand);
  font-weight: 800;
}

.company-intro {
  padding-top: 56px;
  padding-bottom: 56px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-card {
  border-color: rgba(215, 155, 34, 0.45);
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.product-tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a4d05;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-product {
  background: #ffffff;
}

.feature-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(11, 107, 87, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 248, 246, 0.95), rgba(255, 250, 240, 0.9)),
    #ffffff;
  box-shadow: var(--shadow);
}

.feature-shell h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.feature-shell p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.mission-section {
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-links a {
  color: #ffffff;
}

@media (max-width: 820px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .hero {
    padding-top: 64px;
  }

  .section,
  .page-hero,
  .cta-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}
