:root {
  color-scheme: light;
  --bg: #f4efe5;
  --bg-alt: #e8f0ef;
  --surface: #ffffff;
  --surface-strong: #f7f9fb;
  --ink: #13212d;
  --muted: #5f6d77;
  --line: rgba(19, 33, 45, 0.12);
  --accent: #0f5b63;
  --accent-2: #1a3d57;
  --accent-3: #b76d2a;
  --success: #12673d;
  --warning: #9a6a13;
  --danger: #a33b2c;
  --shadow: 0 24px 64px rgba(19, 33, 45, 0.12);
  --shadow-soft: 0 14px 30px rgba(19, 33, 45, 0.08);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 91, 99, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(183, 109, 42, 0.15), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 58%, #eef4f5 100%);
  font-family: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  left: -10rem;
  background: rgba(15, 91, 99, 0.12);
}

body::after {
  right: -10rem;
  bottom: -10rem;
  background: rgba(183, 109, 42, 0.12);
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100vw - 32px));
  margin: 16px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(19, 33, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 28px rgba(15, 91, 99, 0.24);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(19, 33, 45, 0.16);
  border-radius: 14px;
  background: var(--accent-2);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.nav-cta {
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(15, 91, 99, 0.22);
}

.nav-cta-secondary {
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(26, 61, 87, 0.18);
}

.hero,
.section,
.site-footer {
  width: min(1200px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 34px 0 24px;
}

.hero-copy,
.hero-panel,
.feature-card,
.audience-list article,
.timeline li,
.showcase-card,
.trust-grid article,
.faq-list details,
.contact-card,
.legal-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  width: 100%;
  padding: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1 {
  max-width: 23ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 23ch;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-subhead {
  max-width: 54ch;
  margin-top: 16px;
  color: var(--accent-2);
  font-size: 1.06rem;
  line-height: 1.55;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.15;
}

.lead,
.section p,
.contact-section p,
.legal-grid p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.hero .lead {
  max-width: 80ch;
  margin-top: 18px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-highlights span {
  padding: 9px 12px;
  border: 1px solid rgba(19, 33, 45, 0.1);
  border-radius: 999px;
  background: rgba(247, 249, 251, 0.95);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(15, 91, 99, 0.22);
}

.secondary {
  border: 1px solid rgba(19, 33, 45, 0.14);
  background: #fff;
}

.button-success {
  border-color: rgba(20, 92, 52, 0.34);
  color: #f4fff5;
  background: linear-gradient(135deg, #1c7a44, #145c36);
  box-shadow: 0 12px 24px rgba(20, 92, 52, 0.22);
}

.ghost {
  border: 1px solid rgba(15, 91, 99, 0.16);
  color: var(--accent-2);
  background: rgba(15, 91, 99, 0.06);
}

.hero-note {
  max-width: 64ch;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  background: rgba(15, 91, 99, 0.06);
  color: var(--accent-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-cta-note {
  max-width: 72ch;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(13, 42, 63, 0.08);
  color: var(--text);
  font-weight: 700;
}

.hero-cta-note strong {
  color: var(--accent);
}

.hero-panel {
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.panel-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.panel-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #26d47b;
  box-shadow: 0 0 0 5px rgba(38, 212, 123, 0.14);
}

.panel-top small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.demo-widget {
  padding: 18px;
  background: rgba(247, 249, 251, 0.96);
}

.demo-widget label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.search-line input {
  min-height: 48px;
  border-radius: 14px;
  font: inherit;
}

.search-line input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(19, 33, 45, 0.12);
  background: #fff;
  color: var(--ink);
}

.search-line input::placeholder {
  color: #7b8a93;
}

.search-line-copy {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.demo-widget p {
  margin-top: 10px;
  color: var(--success);
  font-size: 0.92rem;
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.result-grid div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(19, 33, 45, 0.12);
  border-radius: 18px;
  background: var(--surface);
}

.result-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.result-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.pill-green {
  color: var(--success);
}

.pill-yellow {
  color: var(--warning);
}

.pill-red {
  color: var(--danger);
}

.panel-copy {
  padding: 0 18px 20px;
}

.panel-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

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

.workflow-intro {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.58;
}

.workflow-detail {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  background: rgba(15, 91, 99, 0.05);
  color: var(--accent-2);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.55;
}

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

.workflow-list li {
  padding: 14px 14px 13px;
  border: 1px solid rgba(19, 33, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.workflow-list strong {
  display: block;
  color: var(--accent-2);
  font-size: 0.95rem;
  font-weight: 900;
}

.workflow-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.workflow-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.panel-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-2);
  font-weight: 800;
}

.section {
  padding-top: 64px;
}

.workflow-section {
  padding-top: 42px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.compare-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.workflow-figure {
  width: 100%;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.video-player {
  width: 100%;
}

.video-player video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #fff;
  max-width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.workflow-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(19, 33, 45, 0.08);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: rgba(15, 91, 99, 0.08);
  color: var(--accent-2);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table td:first-child {
  color: var(--muted);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-note {
  padding: 16px 22px 20px;
  border-top: 1px solid rgba(19, 33, 45, 0.08);
  color: var(--accent-2);
  font-size: 0.95rem;
}

.card-grid,
.pricing-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.pricing-card,
.audience-list article,
.timeline li,
.trust-grid article,
.legal-grid article {
  padding: 22px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 91, 99, 0.08);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card h3,
.pricing-card h3,
.audience-list h3,
.trust-grid h3 {
  margin-top: 14px;
}

.feature-card p,
.pricing-card p,
.audience-list p,
.timeline span,
.trust-grid p,
.legal-grid p,
.faq-list p,
.contact-card span {
  margin-top: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
  padding-top: 70px;
}

.audience-list,
.faq-list {
  display: grid;
  gap: 16px;
}

.timeline {
  display: grid;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding-left: 72px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 18px rgba(15, 91, 99, 0.18);
}

.timeline strong {
  display: block;
  font-size: 1.05rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.showcase-card {
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase-card figcaption {
  padding: 20px 22px 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.proof-section {
  padding-top: 72px;
  width: min(1500px, calc(100vw - 24px));
}

.proof-section .section-head {
  padding-inline: 40px;
}

.proof-section .section-head h2 {
  max-width: none;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
}

.trust-grid {
  margin-top: 4px;
}

.pricing-section {
  scroll-margin-top: 96px;
}

.pricing-grid {
  margin-top: 4px;
}

.pricing-card {
  display: grid;
  gap: 10px;
}

.pricing-card .feature-number {
  width: fit-content;
  min-width: 92px;
  justify-self: start;
}

.pricing-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.pricing-card p {
  margin-top: 0;
}

.pricing-addon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 128, 61, 0.1);
  color: #146c43;
  font-size: 0.92rem;
  font-weight: 800;
}

.pricing-addon::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #146c43;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
}

.pricing-note {
  margin-top: 18px;
  padding-inline: 4px;
  color: var(--muted);
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.04rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  margin-bottom: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 20px;
  align-items: start;
  padding-top: 72px;
}

.contact-card {
  padding: 24px;
}

.contact-card > p {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-safety {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 111, 94, 0.08);
  color: #0f5b4b;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.legal-section {
  padding-top: 72px;
  padding-bottom: 56px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 36px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span {
  max-width: 48rem;
  line-height: 1.55;
}

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

.footer-links a {
  color: var(--accent-2);
}

:focus-visible {
  outline: 3px solid rgba(15, 91, 99, 0.28);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .split-section,
  .contact-section,
  .legal-grid,
  .card-grid,
  .pricing-grid,
  .trust-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .proof-section {
    width: min(100vw - 20px, 1500px);
  }

  .proof-section .section-head {
    padding-inline: 24px;
  }

  .proof-section .section-head h2 {
    font-size: clamp(2rem, 4.2vw, 2.8rem);
  }

  .hero-copy {
    padding: 28px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(19, 33, 45, 0.08);
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 24px;
  }

  .workflow-figure {
    padding: 10px;
  }

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

  .hero-copy,
  .hero-panel,
  .feature-card,
  .audience-list article,
  .timeline li,
  .trust-grid article,
  .faq-list details,
  .contact-card,
  .legal-grid article {
    border-radius: 20px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100vw - 20px, 1200px);
  }

  .site-header {
    padding: 14px;
    margin-top: 10px;
  }

  .hero-copy {
    padding: 22px;
  }

  .proof-section .section-head {
    padding-inline: 18px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .search-line {
    grid-template-columns: 1fr;
  }

  .timeline li {
    padding-left: 22px;
  }

  .timeline li::before {
    top: 20px;
    left: 0;
  }

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