:root {
  --ink: #153c39;
  --muted: #56736f;
  --forest: #08756d;
  --forest-deep: #06433f;
  --teal: #0b8177;
  --sage: #8ce5be;
  --sage-light: #dff8ed;
  --cream: #eefbf7;
  --paper: #fbfffd;
  --line: #d1ebe3;
  --white: #ffffff;
  --brand-mint: #9eebc5;
  --brand-aqua: #2ac7b3;
  --brand-gradient: linear-gradient(135deg, #0a746c 0%, #0b8177 100%);
  --shadow: 0 24px 70px rgba(8, 117, 109, 0.14);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-aqua);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(209, 235, 227, 0.88);
  background: rgba(251, 255, 253, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42, 199, 179, 0.16);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 117, 109, 0.12);
  object-fit: cover;
}

.brand small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #315b57;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:not(.button-link) {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.button-link)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--forest);
  background: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-button span {
  position: relative;
}

.menu-button span::before {
  position: absolute;
  top: -6px;
}

.menu-button span::after {
  position: absolute;
  top: 6px;
}

.menu-open .menu-button span {
  background: transparent;
}

.menu-open .menu-button span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-button span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button-link,
.button-primary,
.button-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button-link,
.button-primary {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 8px 24px rgba(8, 117, 109, 0.16);
}

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

.button-link:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(8, 117, 109, 0.2);
}

.button-link:hover,
.button-primary:hover {
  background: linear-gradient(135deg, #075e58 0%, #0b8177 100%);
}

.button-secondary:hover {
  border-color: rgba(42, 199, 179, 0.55);
  background: var(--sage-light);
}

.arrow {
  font-size: 1.1em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(140, 229, 190, 0.22);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 88px;
  background:
    radial-gradient(
      circle at 81% 8%,
      rgba(158, 235, 197, 0.34),
      transparent 28%
    ),
    radial-gradient(circle at 12% 92%, rgba(42, 199, 179, 0.1), transparent 24%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.hero::after {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -300px;
  bottom: -300px;
  border: 1px solid rgba(42, 199, 179, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 76px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 6.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-copy > p,
.page-hero .lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.profile-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(145deg, #064b46 0%, #08756d 58%, #0b8177 100%);
  box-shadow: var(--shadow);
}

.profile-card::before {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -160px;
  right: -130px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.profile-label {
  margin: 0 0 24px;
  color: #d8f7eb;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-card h2 {
  max-width: 320px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.12;
}

.profile-list {
  margin: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.profile-row dt {
  color: #b8eadb;
  font-size: 0.82rem;
}

.profile-row dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.section {
  padding: 96px 0;
}

.section-tinted {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(145deg, #043d39 0%, #075b55 100%);
}

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

.section-heading h2,
.content-block h2,
.cta-panel h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-dark .section-heading h2,
.section-dark .content-block h2 {
  color: var(--white);
}

.section-heading p,
.content-block > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p,
.section-dark .content-block > p {
  color: #b9dfd7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(42, 199, 179, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-number,
.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 14px;
  color: var(--forest);
  background: var(--sage-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.info-card h3,
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--forest-deep);
  font-size: 1.16rem;
  line-height: 1.35;
}

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

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 64px;
}

.product-copy .product-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.product-copy p {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.product-demo {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #e8f8f3;
  box-shadow: var(--shadow);
}

.demo-window {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}

.demo-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid #e4f2ed;
}

.demo-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9ddd3;
}

.demo-content {
  padding: 24px;
}

.demo-title {
  width: 46%;
  height: 12px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: var(--forest);
}

.demo-controls {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}

.demo-controls span {
  width: 26%;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.demo-controls span:last-child {
  width: 20%;
  border-color: var(--teal);
  background: var(--teal);
}

.demo-table {
  border: 1px solid #e4f2ed;
  border-radius: 10px;
}

.demo-table div {
  height: 46px;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.7fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-top: 1px solid #e4f2ed;
}

.demo-table div:first-child {
  border-top: 0;
  background: #f2fbf8;
}

.demo-table span {
  height: 8px;
  border-radius: 99px;
  background: #cce6df;
}

.demo-table span:nth-child(n + 2) {
  background: #bdebd9;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.step-list {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
}

.step h3 {
  margin: 2px 0 6px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: #b9dfd7;
}

.cta-section {
  padding: 80px 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px;
  border-radius: 30px;
  border: 1px solid rgba(42, 199, 179, 0.16);
  background: linear-gradient(135deg, #e7fbf3 0%, #caf5e5 100%);
}

.cta-panel::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -150px;
  border: 1px solid rgba(8, 117, 109, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 88% 6%, rgba(158, 235, 197, 0.24), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.breadcrumb {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.breadcrumb a {
  color: var(--teal);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(400px, 1.24fr);
  gap: 80px;
}

.content-block + .content-block {
  margin-top: 54px;
}

.fact-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.fact-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--muted);
}

.fact-list dd {
  margin: 0;
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sage-light);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card .text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 750;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 72px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-nav strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-nav a:hover {
  color: var(--teal);
}

.legal-copy h2 {
  margin: 54px 0 12px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: #3f5d59;
}

.legal-copy a,
.text-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.notice {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--sage);
  border-radius: 0 14px 14px 0;
  background: var(--cream);
}

.site-footer {
  padding: 62px 0 28px;
  color: #c7e5de;
  background: linear-gradient(145deg, #033d39 0%, #06544e 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand small {
  color: #a9d9cc;
}

.footer-brand p {
  max-width: 410px;
  margin: 20px 0 0;
  color: #a9cfc6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #91bcb2;
  font-size: 0.84rem;
}

.error-page {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-page h2 {
  margin: 26px 0 8px;
  font-size: 1.5rem;
}

.error-page p {
  margin: 0 0 26px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .product-panel,
  .content-grid,
  .split-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .profile-card {
    max-width: 620px;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 38px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .legal-nav strong {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 28px 22px;
    background: var(--paper);
  }

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

  .site-nav a:not(.button-link) {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .button-link {
    margin-top: 16px;
  }

  .hero {
    padding: 76px 0 64px;
  }

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

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .profile-card {
    padding: 26px;
  }

  .profile-row {
    grid-template-columns: 110px 1fr;
  }

  .section {
    padding: 72px 0;
  }

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

  .info-card {
    min-height: 0;
  }

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

  .product-demo {
    padding: 10px;
  }

  .demo-content {
    padding: 16px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 26px;
  }

  .page-hero {
    padding: 68px 0 58px;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
