@font-face {
  font-family: "WOO Manrope";
  src: url("/assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "WOO Manrope";
  src: url("/assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --moonstone: #f3f0e8;
  --ink: #171a24;
  --ink-soft: #4d5058;
  --aqua: #3f6b73;
  --aqua-dark: #2f535a;
  --paper: #fffdf8;
  --line: #c9c7c0;
  --focus: #0a67a3;
  --shadow: 0 18px 48px rgba(23, 26, 36, .08);
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  background: var(--moonstone);
  color: var(--ink);
  font-family: "WOO Manrope", system-ui, sans-serif;
  font-size: 1rem;
  font-synthesis: none;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--aqua-dark);
  font-weight: 600;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover { color: var(--ink); }

a:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  opacity: 0;
  padding: .7rem 1rem;
  pointer-events: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header,
.site-footer {
  width: min(76rem, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1.35rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem 1.35rem;
}

.brand {
  color: var(--ink);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.035em;
  text-decoration: none;
}

.page-shell {
  width: min(64rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0 5rem;
}

.intro { max-width: 50rem; margin-bottom: 3rem; }

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--aqua-dark);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.05;
}

h3 {
  margin: 1.8rem 0 .7rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.dek {
  max-width: 47rem;
  margin-bottom: 1.25rem;
  color: var(--aqua-dark);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.tool-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.tool-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.button {
  display: inline-block;
  min-height: 3rem;
  margin-top: .5rem;
  background: var(--ink);
  color: white;
  padding: .7rem 1.2rem;
  text-decoration: none;
}

.button:hover { background: var(--aqua-dark); color: white; }

.text-link {
  display: inline-block;
  padding: .7rem .15rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1.25rem;
  margin-top: 1.6rem;
}

.product-page {
  width: min(70rem, calc(100% - 2rem));
}

.product-panel,
.plain-panel {
  margin-top: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.product-panel + .product-panel,
.product-panel + .plain-panel {
  margin-top: 2rem;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1.5rem;
}

.product-heading h2 {
  max-width: 48rem;
}

.price {
  min-width: 8rem;
  margin: 0;
  border-left: 3px solid var(--aqua);
  padding-left: 1rem;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

.price span {
  display: block;
  margin-bottom: .25rem;
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-list {
  margin: 0;
  padding-left: 1.3rem;
}

.feature-list li + li {
  margin-top: .45rem;
}

.two-column-list {
  columns: 2 20rem;
  column-gap: 3rem;
}

.two-column-list li {
  break-inside: avoid;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.fact-grid > div {
  border-top: 1px solid var(--line);
}

.fact-grid h3 {
  margin-top: 1rem;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  background: white;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: .9rem 1rem;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--ink);
  color: white;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

tbody th {
  width: 28%;
}

tbody td:nth-child(2) {
  width: 18%;
  white-space: nowrap;
  font-weight: 600;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.status-note {
  margin: 1.75rem 0 0;
  border-left: 3px solid var(--aqua);
  background: var(--moonstone);
  padding: 1rem 1.15rem;
}

.demo-section {
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
  padding-top: .25rem;
}

.demo-video {
  display: block;
  width: 100%;
  max-width: 60rem;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.demo-transcript {
  max-width: 55rem;
  margin-top: 1rem;
}

.demo-transcript summary {
  width: fit-content;
  cursor: pointer;
  color: var(--aqua-dark);
  font-weight: 600;
}

.demo-transcript ol {
  padding-left: 1.25rem;
}

.demo-transcript li + li {
  margin-top: .45rem;
}

.home-products {
  margin-top: 2rem;
}

.home-products h2 {
  max-width: 50rem;
}

.site-footer {
  padding: 2.2rem 0 3.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .86rem;
}

.site-footer nav { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; }

.text-page {
  max-width: 48rem;
}

.text-page h1 { font-size: clamp(2.8rem, 7vw, 4.6rem); }
.text-page h2 { margin-top: 2.5rem; font-size: clamp(1.6rem, 4vw, 2.2rem); }

@media (max-width: 760px) {
  .tool-card { grid-template-columns: 1fr; }
  .tool-card img { order: -1; }
  .product-heading,
  .fact-grid { grid-template-columns: 1fr; }
  .price { max-width: 14rem; }
}

@media (max-width: 420px) {
  .site-header { align-items: flex-start; }
  .site-header nav { flex-direction: column; gap: .25rem; }
  .site-header nav a { font-size: .82rem; }
  .page-shell { width: min(100% - 1rem, 64rem); padding-top: 2.75rem; }
  .site-footer { width: min(100% - 1rem, 76rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
