:root {
  color-scheme: light;
  --canvas: #fbfdf9;
  --mist: #f1faed;
  --surface: #ffffff;
  --green: #196f40;
  --green-strong: #258d58;
  --seafoam: rgba(129, 219, 178, 0.35);
  --lime: rgba(207, 249, 144, 0.35);
  --ink: #111914;
  --muted: #65736a;
  --border: #dbe4dc;
  --soft-border: rgba(25, 111, 64, 0.14);
  --shadow: 0 18px 46px rgba(25, 111, 64, 0.08);
  --tight-shadow: 0 8px 18px rgba(25, 111, 64, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, var(--lime), transparent 30rem),
    radial-gradient(circle at 8% 24%, var(--seafoam), transparent 28rem),
    linear-gradient(180deg, #fbfdf9 0%, #f6fbf6 52%, #fbfdf9 100%);
}

a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  color: var(--green-strong);
}

.site-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 20px 42px;
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

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

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 18px;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a,
.footer-links a,
.secondary-link,
.primary-link {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
}

.nav-links a,
.footer-links a,
.secondary-link {
  background: rgba(255, 255, 255, 0.58);
  color: var(--green);
}

.primary-link {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.primary-link:hover {
  background: var(--green-strong);
  color: #fff;
}

.home-page,
.legal-card,
.hero {
  margin-top: 28px;
}

.home-page {
  display: grid;
  gap: 24px;
}

.home-hero,
.content-section,
.legal-card,
.hero {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero {
  display: grid;
  gap: clamp(24px, 5vw, 58px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.76fr);
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
}

.home-hero::before {
  background:
    radial-gradient(circle at 68% 18%, rgba(207, 249, 144, 0.36), transparent 18rem),
    radial-gradient(circle at 8% 82%, rgba(129, 219, 178, 0.28), transparent 20rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.app-preview {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
}

h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
  text-wrap: balance;
}

h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0 0 12px;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.24;
  margin: 0 0 8px;
}

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

ol,
ul {
  padding-left: 22px;
}

.lead {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 20px;
}

.company-note {
  border-left: 1px solid var(--soft-border);
  display: grid;
  gap: 4px;
  max-width: 560px;
  padding-left: 14px;
}

.company-note strong {
  color: var(--ink);
  font-size: 15px;
}

.company-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.app-preview {
  display: flex;
  justify-content: center;
}

.phone-shell {
  background:
    radial-gradient(circle at 82% 8%, rgba(207, 249, 144, 0.5), transparent 10rem),
    radial-gradient(circle at 18% 18%, rgba(129, 219, 178, 0.42), transparent 12rem),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(25, 111, 64, 0.18);
  max-width: 360px;
  min-height: 640px;
  overflow: hidden;
  padding: 22px;
  width: 100%;
}

.phone-top {
  align-items: center;
  display: flex;
  gap: 10px;
}

.phone-top strong,
.phone-top span {
  display: block;
}

.phone-top strong {
  color: var(--ink);
  font-size: 15px;
}

.phone-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.avatar {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.verified-dot {
  background: #1fb45e;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 16px;
  margin-left: auto;
  width: 16px;
}

.screen-title {
  margin: 26px 0 16px;
}

.screen-title button {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 7px 12px;
}

.screen-title h2 {
  font-size: 32px;
  margin-top: 10px;
}

.search-preview {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  padding: 13px 16px;
}

.filter-preview {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 16px 0 18px;
}

.filter-preview span {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  text-align: center;
}

.filter-preview .active {
  background: var(--green);
  color: #fff;
}

.listing-preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.listing-preview-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.listing-art {
  align-items: flex-end;
  aspect-ratio: 1.15;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.85), transparent 0 1.2rem, transparent 1.21rem),
    radial-gradient(circle at 64% 72%, rgba(207, 249, 144, 0.54), transparent 4.8rem),
    linear-gradient(135deg, rgba(25, 111, 64, 0.56), rgba(129, 219, 178, 0.45));
  display: flex;
  padding: 12px;
}

.listing-art.alt {
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.85), transparent 0 1.2rem, transparent 1.21rem),
    radial-gradient(circle at 62% 70%, rgba(129, 219, 178, 0.5), transparent 4.8rem),
    linear-gradient(135deg, rgba(25, 111, 64, 0.5), rgba(207, 249, 144, 0.28));
}

.listing-art span,
.mini-pill {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.listing-preview-card h3,
.listing-preview-card p,
.listing-meta {
  padding-inline: 10px;
}

.listing-preview-card h3 {
  font-size: 14px;
  margin-top: 10px;
}

.listing-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 10px;
}

.listing-meta strong {
  color: var(--ink);
  font-size: 17px;
}

.listing-meta span {
  background: rgba(101, 115, 106, 0.08);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 7px;
}

.listing-preview-card p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin: 7px 0 12px;
}

.bottom-nav-preview {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
  padding: 8px;
}

.bottom-nav-preview span,
.bottom-nav-preview strong {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.bottom-nav-preview strong {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 24px;
  font-weight: 500;
  height: 54px;
  justify-content: center;
  justify-self: center;
  width: 54px;
}

.company-panel,
.fact-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.company-panel,
.fact-list {
  background: linear-gradient(135deg, var(--mist), rgba(129, 219, 178, 0.2));
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 0;
  overflow: hidden;
}

.company-panel.compact {
  grid-template-columns: repeat(3, 1fr);
}

.company-panel div,
.fact-list div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.company-panel div + div,
.fact-list div + div {
  border-left: 1px solid var(--border);
}

.fact-list div + div {
  border-left: 0;
  border-top: 1px solid var(--border);
}

.panel-label,
.fact-list span,
.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.company-panel strong,
.fact-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.content-section,
.legal-card,
.hero {
  padding: clamp(24px, 4vw, 42px);
}

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

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.product-screen {
  background:
    radial-gradient(circle at 78% 16%, var(--lime), transparent 8rem),
    radial-gradient(circle at 18% 20%, var(--seafoam), transparent 8rem),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 190px;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 14px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.mini-search,
.detail-line,
.thread-row,
.score-row {
  background: rgba(101, 115, 106, 0.12);
  border-radius: 999px;
}

.mini-search {
  height: 28px;
  margin: 14px 0;
}

.mini-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.mini-grid span {
  background: linear-gradient(135deg, rgba(25, 111, 64, 0.34), rgba(129, 219, 178, 0.35));
  border-radius: 8px;
  height: 48px;
}

.media-block {
  background: linear-gradient(135deg, rgba(25, 111, 64, 0.44), rgba(207, 249, 144, 0.32));
  border-radius: 8px;
  height: 76px;
  margin-bottom: 16px;
}

.detail-line {
  height: 14px;
  margin-bottom: 10px;
  width: 52%;
}

.detail-line.wide {
  width: 82%;
}

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

.detail-actions span {
  background: rgba(25, 111, 64, 0.12);
  border-radius: 999px;
  height: 28px;
}

.thread-row {
  height: 38px;
  margin-bottom: 10px;
  width: 86%;
}

.thread-row.short {
  width: 68%;
}

.bubble {
  border-radius: 16px;
  height: 28px;
  margin-top: 18px;
}

.bubble.left {
  background: rgba(101, 115, 106, 0.12);
  width: 72%;
}

.bubble.right {
  background: rgba(25, 111, 64, 0.82);
  margin-left: auto;
  width: 54%;
}

.podium {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  height: 112px;
}

.podium span {
  background: linear-gradient(180deg, #fff, rgba(207, 249, 144, 0.54));
  border: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
}

.podium span:first-child {
  height: 68px;
}

.podium span:nth-child(2) {
  height: 98px;
}

.podium span:last-child {
  height: 56px;
}

.score-row {
  height: 18px;
  margin: 14px auto 0;
  width: 74%;
}

.score-row.small {
  width: 52%;
}

.split-section {
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
}

.safety-panel {
  background: linear-gradient(135deg, rgba(241, 250, 237, 0.92), rgba(129, 219, 178, 0.18));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.safety-panel ul {
  margin-bottom: 0;
}

.step-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.step-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--tight-shadow);
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.step-list strong {
  color: var(--ink);
  font-size: 15px;
}

.step-list span {
  font-size: 14px;
  line-height: 1.48;
}

.contact-section {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
}

.contact-list {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.contact-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin: 0;
  padding: 13px 16px;
}

.contact-list li + li {
  border-top: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 34px;
  padding-top: 22px;
}

.company-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  max-width: 440px;
}

.hero h2,
.legal-card h2 {
  margin-top: 34px;
}

.hero h3,
.legal-card h3 {
  margin-top: 24px;
}

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

  .app-preview {
    justify-content: flex-start;
  }

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

  .company-panel.compact {
    grid-template-columns: 1fr;
  }

  .company-panel div + div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

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

  .site-shell {
    padding: 18px 14px 34px;
  }

  .home-hero,
  .content-section,
  .legal-card,
  .hero {
    padding: 22px;
  }

  .phone-shell {
    min-height: auto;
  }

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

  .nav-links a,
  .footer-links a,
  .secondary-link,
  .primary-link {
    font-size: 13px;
    padding: 7px 10px;
  }

  .contact-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
