:root {
  --primary: #0f4c54;
  --secondary: #1f6f78;
  --dark-text: #13262f;
  --light-text: #f8f9fa;
  --background-light: #ffffff;
  --background-grey: #f4f6f9;
  --accent: #c45c26;
  --accent-dark: #9a4318;
  --muted: #545b62;
  --line: #e2e8f0;
  --ok: #2f7d4a;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  background: var(--background-light);
  color: var(--dark-text);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); }

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 0;
}

h1, h2, h3 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: #fff;
  padding: .5rem .8rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 15px 5%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15,76,84,.08);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
}
.logo span b { color: var(--secondary); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--secondary); }

.nav-tools {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 16px;
}
.custom-lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d0d7df;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font: inherit;
  color: var(--dark-text);
  font-weight: 500;
  transition: border-color .2s ease;
}
.lang-btn:hover,
.lang-btn:focus {
  border-color: var(--secondary);
  outline: none;
}
.lang-btn img.flag,
.lang-option img.flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  display: block;
}
.lang-btn svg.chevron {
  width: 12px;
  height: 12px;
  fill: currentColor;
  opacity: .7;
  transition: transform .2s ease;
}
.custom-lang-switcher.is-open .lang-btn svg.chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #d0d7df;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 100;
}
.custom-lang-switcher.is-open .lang-dropdown,
.lang-dropdown:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown[hidden] {
  display: none;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
}
.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-active {
  background: #f0f4f8;
  color: var(--secondary);
  outline: none;
}
.lang-option:focus-visible {
  box-shadow: inset 0 0 0 2px var(--secondary);
}
.nav-login {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; fill: var(--primary); }

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background .3s ease, transform .2s ease, box-shadow .2s ease;
}
.cta-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15,76,84,.3);
}
.cta-button.orange {
  background: var(--accent-dark);
  color: #fff;
  padding: 15px 32px;
  font-size: 1.2rem;
  border-radius: 8px;
}
.cta-button.orange:hover {
  background: #7d3512;
  box-shadow: 0 6px 15px rgba(154,67,24,.4);
}

.hero {
  background: var(--primary);
  background-image: radial-gradient(circle at 80% 20%, #17808a 0%, transparent 42%);
  color: var(--light-text);
  padding-top: 130px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 180px;
  position: relative;
  z-index: 2;
}
.hero-content { flex: 1.2; max-width: 720px; min-width: 0; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.15rem, 1.6rem + 1.4vw, 3rem);
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -.5px;
}
.hero h1 .soft { color: #9fd3d8; }
.hero-category {
  margin: 0 0 14px;
  color: #9fd3d8;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
}
.hero .subtitle {
  font-size: 1.15rem;
  margin: 0 0 22px;
  color: #d5ecee;
  line-height: 1.8;
}
.hero-built-by {
  font-weight: 700;
  color: #cfe8ea;
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.55;
}
.hero-mockup-wrapper { flex: 0.95; display: flex; justify-content: flex-end; min-width: 0; }
.hero-mockup-container {
  perspective: 1500px;
  max-width: 700px;
  width: 100%;
  transform: translateY(30px);
  position: relative;
  padding-bottom: 58.33%;
  height: 0;
}
.hero-mockup-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  transform: rotateX(6deg) rotateY(-12deg) rotateZ(2deg);
  transition: transform .6s cubic-bezier(.165,.84,.44,1);
  border: 1px solid rgba(255,255,255,.1);
  background: #eef4f6;
}
.hero-mockup-container img:hover {
  transform: rotateX(0) rotateY(0) rotateZ(0) scale(1.02);
}
header.hero:not(.shop-hero) .hero-mockup-container {
  height: auto;
  padding-bottom: 0;
  aspect-ratio: 1920 / 903;
}
header.hero:not(.shop-hero) .hero-mockup-container img {
  object-fit: cover;
}
header.hero:not(.shop-hero) .hero-zoom {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
}
header.hero:not(.shop-hero) .hero-zoom:focus-visible {
  outline: 2px solid #9fd3d8;
  outline-offset: 4px;
  border-radius: 12px;
}
.hero-shape-divider {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.hero-shape-divider svg { display: block; width: calc(100% + 1px); height: 90px; }
.hero-shape-divider .shape-fill { fill: #fff; }

.trust-bar { text-align: center; padding: 40px 20px; }
.trust-bar-heading {
  text-transform: uppercase;
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 700;
}
.trust-bar-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-logos span {
  font-weight: 600;
  font-size: 1.15rem;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 8px;
}
.check {
  width: 1.05em;
  height: 1.05em;
  fill: var(--secondary);
}

/* Homepage mechanism strip — operational loop, not social proof */
.mechanism-strip {
  text-align: center;
  padding: 28px 20px 8px;
  background: #fff;
}
.mechanism-strip-heading {
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .14em;
  margin: 0 0 22px;
  font-weight: 700;
}
.mechanism-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.mechanism-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 9.5rem;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark-text);
  line-height: 1.35;
}
.mechanism-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-top: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  transform: rotate(45deg);
  opacity: .4;
}
.mechanism-step-num {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
}
.mechanism-strip-note {
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: .95rem;
}

.home-spotlight { background: var(--background-grey); }
.home-spotlight > .container { padding-top: 72px; padding-bottom: 72px; }
.home-spotlight .problem-solution { width: 100%; max-width: none; padding: 0; }
.home-spotlight .problem-list .check {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  margin-top: 3px;
}
.home-spotlight .section-links { margin-top: 28px; }
.home-spotlight .problem-image.is-wide img {
  width: min(100%, 520px);
  border-radius: 12px;
}
.home-spotlight .guide-figure {
  margin: 0;
  max-width: 280px;
}
.home-spotlight .guide-figure.is-wide { max-width: none; }
.home-spotlight .guide-figure figcaption {
  text-align: left;
  color: #495057;
}

.cover-paths { background: #fff; }
.cover-paths > .container { text-align: center; }
.cover-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
  margin-top: 36px;
}
.cover-path-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px 30px;
  background: var(--background-grey);
}
.cover-path-card.is-primary {
  background: #fff;
  border-color: rgba(31, 111, 120, .35);
  box-shadow: 0 12px 30px rgba(15,76,84,.08);
}
.cover-path-card h3 { margin: 0 0 12px; font-size: 1.28rem; }
.cover-path-card p { margin: 0 0 14px; color: #495057; line-height: 1.7; }
.cover-path-card p:last-child { margin-bottom: 0; }
.cover-path-card ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: #495057;
  line-height: 1.7;
}
.cover-path-card a { font-weight: 600; }

.plan-actual-visual {
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.plan-actual-visual .guide-figure { margin: 0 auto; }
.plan-actual-boundary {
  margin: 36px auto 0;
  max-width: 640px;
  padding: 18px 22px;
  border-left: 4px solid var(--secondary);
  background: var(--background-grey);
  text-align: left;
  color: #495057;
  line-height: 1.7;
}
.plan-actual-boundary strong { color: var(--dark-text); }

.workday-model-grid.is-four {
  grid-template-columns: repeat(4, 1fr);
}

.marrest-compact {
  background: var(--background-grey);
  text-align: center;
}
.marrest-compact .features-intro { max-width: 680px; margin: 0 auto 28px; }
.marrest-compact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: left;
}
.marrest-compact-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.marrest-compact-card p { margin: 0 0 12px; color: #495057; line-height: 1.7; }
.marrest-compact-card p:last-child { margin-bottom: 0; }
.marrest-compact .section-links { justify-content: center; }

.features-grid.is-supporting {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card .feature-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.problem-solution {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.problem-solution h2 { font-size: 2.5rem; margin-bottom: 20px; }
.problem-content > p { font-size: 1.1rem; color: #495057; margin-bottom: 30px; }
.problem-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 25px; }
.problem-list li { display: flex; gap: 15px; align-items: flex-start; }
.problem-list .x {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  fill: var(--accent);
  margin-top: 3px;
}
.problem-list strong { display: block; font-size: 1.2rem; color: var(--dark-text); margin-bottom: 5px; }
.problem-list p { margin: 0; color: #495057; font-size: .95rem; }
.problem-image {
  background: var(--background-grey);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  display: grid;
  place-items: center;
}
.problem-image img {
  width: min(100%, 280px);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 76, 84, .18);
}

.before-after { background: #fff; }
.before-after > .container { text-align: center; }
.before-after h2 { max-width: 720px; margin: 0 auto 16px; }
.before-after > .container > .features-intro { max-width: 640px; margin: 0 auto 40px; }
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}
.compare-card {
  border-radius: 16px;
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  background: var(--background-grey);
}
.compare-card.is-after {
  background: #fff;
  border-color: rgba(31, 111, 120, .35);
  box-shadow: 0 12px 30px rgba(15,76,84,.08);
}
.compare-kicker {
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compare-card.is-before .compare-kicker { color: var(--accent); }
.compare-card.is-after .compare-kicker { color: var(--secondary); }
.compare-card h3 {
  margin: 0 0 22px;
  font-size: 1.28rem;
}
.compare-flow {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-flow li {
  position: relative;
  margin: 0;
  padding: 0 0 18px 22px;
  font-weight: 600;
  color: #334155;
  border-left: 2px solid var(--line);
}
.compare-flow li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}
.compare-card.is-after .compare-flow li { border-left-color: rgba(31,111,120,.35); }
.compare-card.is-after .compare-flow li::before { background: var(--secondary); }
.compare-flow li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
  font-weight: 700;
  color: var(--dark-text);
}
.compare-card.is-after .compare-flow li:last-child { border-left-color: transparent; }
.compare-card.is-before .compare-flow li:last-child { color: var(--accent); }
.compare-card.is-after .compare-flow li:last-child { color: var(--primary); }

.features { text-align: center; background: var(--background-grey); }
.features-intro { max-width: 600px; margin: 0 auto 50px; font-size: 1.1rem; color: var(--muted); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 30px;
  text-align: left;
}
a.feature-card {
  color: inherit;
  text-decoration: none;
  display: block;
}
.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.04);
  min-height: 250px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.feature-card h3 { margin: 0 0 15px; font-size: 1.35rem; position: relative; z-index: 1; }
.feature-card p { color: var(--muted); margin: 0; position: relative; z-index: 1; }
.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: .9em;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.icon-wrapper {
  position: absolute;
  right: -20px;
  bottom: -30px;
  opacity: .06;
  transform: rotate(-15deg);
  pointer-events: none;
}
.icon-wrapper svg { width: 160px; height: 160px; fill: var(--secondary); }

.capabilities-panel {
  background: linear-gradient(180deg, #f9fbfd 0%, #fff 100%);
  padding: 40px;
  border-radius: 14px;
  margin: 0 auto 0;
  box-shadow: 0 10px 30px rgba(15,76,84,.06);
  border: 1px solid rgba(15,76,84,.08);
  text-align: center;
}
.capabilities-intro { max-width: 760px; margin: 0 auto 28px; color: #4c5d73; }
.capabilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  text-align: left;
}
.capabilities-list li {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(15,76,84,.09);
  border-radius: 12px;
}
.capability-marker {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px rgba(31,111,120,.12);
}

.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mode {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.mode h3 { margin-top: 0; font-size: 1.5rem; }
.mode-role {
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 14px;
}
.mode p { color: #495057; }
.mode ul { color: #495057; padding-left: 1.15rem; }
.section-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.section-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(15,76,84,.2);
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15,76,84,.05);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.section-links a:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(15,76,84,.1);
  transform: translateY(-2px);
}
.section-links a:focus-visible {
  outline: 3px solid rgba(31,111,120,.25);
  outline-offset: 3px;
}
.section-links span { font-size: 1.15em; }
.modes-kicker {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 auto 14px;
  max-width: 720px;
  line-height: 1.4;
}
.positioning-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.positioning-copy p {
  color: #495057;
  font-size: 1.08rem;
  line-height: 1.75;
}
.positioning-copy .kicker {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--dark-text);
}

.workday-section { background: #fff; }
.workday-model { text-align: center; }
.section-eyebrow {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.workday-model > h2 { max-width: 720px; margin: 0 auto 16px; }
.workday-model .features-intro { max-width: 760px; margin: 0 auto 48px; }
.workday-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .workday-model-grid.is-four {
    grid-template-columns: repeat(2, 1fr);
  }
  .workday-model-grid.is-four .workday-step:not(:last-child)::after {
    display: none;
  }
}
.workday-step {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px 34px;
  background: var(--background-grey);
  box-shadow: 0 8px 24px rgba(15,76,84,.04);
}
.workday-step-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
}
.workday-step-label {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
}
.workday-step h3 { margin: 0 0 12px; font-size: 1.28rem; }
.workday-step p:not(.workday-step-label) { margin: 0; color: #495057; line-height: 1.7; }
@media (min-width: 1101px) {
  .workday-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -18px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
    transform: rotate(45deg);
    opacity: .35;
    pointer-events: none;
  }
}

.about-name-section { background: var(--background-grey); }
.wiktionary-wrapper { max-width: 650px; margin: 0 auto; }
.wiktionary-wrapper h2 { text-align: center; margin-bottom: 40px; }
.wiktionary-entry {
  text-align: left;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 12px;
  background: #fff;
  border-left: 5px solid var(--secondary);
}
.wiktionary-entry h3 { margin-top: 0; color: var(--dark-text); font-size: 1.8rem; }
.wiktionary-entry p { color: #495057; }

.captains-section {
  background: var(--primary);
  color: var(--light-text);
  text-align: center;
}
.captains-section h2 { color: #fff; }
.captains-section .section-intro {
  max-width: 750px;
  margin: 0 auto 20px;
  color: #d5ecee;
  font-size: 1.1rem;
}
.founders {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--secondary);
  overflow: hidden;
  background: #1a6b73;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-card h3 { color: #fff; margin-bottom: 5px; }
.founder-card .role {
  color: #9fd3d8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .95rem;
}

.audience { background: var(--background-grey); text-align: center; }
.audience h2 { margin-bottom: 16px; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
  align-items: stretch;
}
.audience-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 34px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,76,84,.04);
}
.audience-kicker {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
}
.audience-card h3 { margin: 0 0 14px; font-size: 1.35rem; }
.audience-card p, .audience-card li { margin: 0; color: #495057; line-height: 1.75; }
.audience-intro { max-width: 760px; margin: 0 auto 44px; line-height: 1.75; font-size: 1.15rem; }

.final-cta { text-align: center; }
.final-cta h2 { font-size: 2.5rem; max-width: 600px; margin: 0 auto 20px; }
.final-cta p { font-size: 1.1rem; color: var(--muted); max-width: 550px; margin: 0 auto; }
.final-cta .cta-button { margin-top: 35px; padding: 16px 40px; font-size: 1.25rem; }

.contact-section { background: var(--background-grey); }
.contact-section h2 { text-align: center; }
.contact-section .contact-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 10px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark-text);
}
.contact-section .section-intro { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.contact-form {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-field { display: grid; gap: 6px; }
.contact-field.full { grid-column: 1 / -1; }
.contact-field label { font-weight: 600; }
.contact-field .req { color: var(--accent); font-weight: 700; }
.contact-req-note {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--muted, #5a6b70);
  line-height: 1.45;
}
.contact-field-error {
  margin: 0;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
}
.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: var(--accent);
}
.contact-field input,
.contact-field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.contact-field textarea { min-height: 140px; resize: vertical; }
.contact-submit { margin-top: 22px; }
.contact-privacy {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--muted, #5a6b70);
  line-height: 1.45;
}
.contact-privacy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contact-noscript {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--muted, #5a6b70);
  line-height: 1.45;
}
.contact-status { min-height: 1.4rem; font-weight: 600; color: var(--primary); }
.contact-status.is-error { color: var(--accent); }
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.faq-section h2 { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--secondary); }
.faq-item summary {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 0 25px 20px; color: #495057; }

.footer {
  background: var(--primary);
  color: #d5ecee;
  padding: 48px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.footer a { color: #d5ecee; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.25rem;
}
.footer-logo .logo-mark {
  background: #fff;
  color: var(--primary);
}
.footer-heading { color: #fff; font-size: 1rem; }
.footer-links { display: grid; gap: 8px; }
.footer-copy { max-width: 1140px; margin: 32px auto 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: .92rem; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,32,36,.8);
  z-index: 90;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.modal-overlay:not([hidden]) {
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  border: 0;
  background: none;
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
}
.modal-title { margin-top: 0; }
.modal-text { color: #334155; font-size: 1.05rem; }

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .workday-model-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 5%;
    right: 5%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-login { display: none; }
  .nav-tools .cta-button { display: none; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 2.15rem; }
  .hero-content { max-width: none; }
  .hero-mockup-wrapper { flex: 1; }
  .hero .container,
  .problem-solution,
  .before-after-grid,
  .cover-paths-grid,
  .modes,
  .workday-model-grid,
  .workday-model-grid.is-four,
  .audience-grid,
  .contact-grid,
  .capabilities-list,
  .features-grid.is-supporting,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero .container { display: flex; flex-direction: column; padding-bottom: 120px; }
  .hero-mockup-container { transform: none; }
  .mechanism-steps li {
    min-width: calc(50% - 12px);
    padding: 12px 16px;
  }
  .mechanism-steps li:not(:last-child)::after { display: none; }
}

.guide-hero {
  background: var(--primary);
  background-image: radial-gradient(circle at 80% 20%, #17808a 0%, transparent 48%);
  color: var(--light-text);
  padding: 108px 0 0;
}
.guide-hero .container {
  max-width: 820px;
  padding: 28px 0 36px;
}
.guide-hero.has-media {
  position: relative;
  overflow: hidden;
}
.guide-hero.has-media .container {
  max-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0 120px;
}
.guide-hero-copy { min-width: 0; }
.guide-hero.has-media .guide-hero-copy {
  flex: 1;
  max-width: 540px;
}
.guide-hero.has-media .guide-hero-media {
  flex: 1.15;
}
.guide-hero.has-media .hero-mockup-container {
  transform: translateY(18px);
}
.guide-hero.has-media h1,
.guide-hero.has-media:has(.guide-kicker) h1 {
  font-size: 2.5rem;
  line-height: 1.18;
}
.guide-hero-cta {
  margin-top: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .guide-hero-media img,
  .guide-hero-media img:hover,
  .guide-hero.has-media .hero-mockup-container {
    transform: none;
    transition: none;
  }
}
.guide-hero-rule {
  height: 8px;
  background:
    linear-gradient(var(--secondary), var(--secondary)) top / 100% 3px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom / 100% 3px no-repeat;
  background-color: #fff;
}
.guide-kicker {
  margin: 0 0 10px;
  color: #9fd3d8;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.guide-hero h1 {
  color: #fff;
  font-size: 2.15rem;
  margin: 0 0 12px;
  max-width: none;
  letter-spacing: -.3px;
}
.guide-hero:has(.guide-kicker) h1 {
  font-size: 2.4rem;
  line-height: 1.22;
}
.guide-body .cta-button {
  margin: .35rem 0 1.4rem;
}
.guide-lead {
  margin: 0;
  max-width: none;
  color: #d5ecee;
  font-size: 1.08rem;
  line-height: 1.65;
}
.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: .92rem;
  color: #9fd3d8;
}
.guide-breadcrumbs a { color: #cfe8ea; text-decoration: none; }
.guide-breadcrumbs a:hover { color: #fff; }
.guide-page { background: #fff; }
.guide-content { max-width: 820px; padding-top: 40px; padding-bottom: 24px; }
.guide-body h2 {
  font-size: 1.55rem;
  margin: 2.2rem 0 .7rem;
}
.guide-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 .45rem;
}
.guide-body p, .guide-body li { color: #495057; }
.guide-body ul, .guide-body ol { padding-left: 1.2rem; }
.guide-figure {
  margin: 1.6rem auto 2rem;
  max-width: 280px;
}
.guide-figure.is-wide {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.guide-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-figure figcaption {
  margin: .7rem 0 0;
  font-size: .92rem;
  line-height: 1.45;
  color: #5a6570;
  text-align: left;
}
.guide-figure.is-wide figcaption {
  max-width: 42rem;
}
.guide-zoom {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  text-align: inherit;
}
.guide-zoom:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 22px;
}
.guide-zoom-clip {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(15, 76, 84, .16);
}
.guide-figure.is-wide .guide-zoom-clip {
  border-radius: 12px;
}
.guide-figure.is-wide .guide-zoom:focus-visible {
  border-radius: 12px;
}
.guide-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  gap: 28px 40px;
  align-items: start;
  margin: 2.2rem 0 1.6rem;
}
.guide-split .guide-split-copy { min-width: 0; }
.guide-split .guide-split-copy > :first-child { margin-top: 0; }
.guide-split .guide-split-copy > :last-child { margin-bottom: 0; }
.guide-split .guide-figure {
  margin: 0;
  width: 100%;
  max-width: 280px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.guide-split .guide-figure figcaption {
  margin-top: .65rem;
}
@media (min-width: 721px) {
  .guide-split .guide-figure {
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }
  .guide-split .guide-zoom {
    flex: 1 1 auto;
    display: flex;
    min-height: 12rem;
  }
  .guide-split .guide-zoom-clip {
    flex: 1 1 auto;
    min-height: 12rem;
    height: 100%;
  }
  .guide-split .guide-figure img {
    width: 100%;
    height: auto;
  }
  .guide-split.is-flip {
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  }
  .guide-split.is-flip .guide-split-copy {
    grid-column: 2;
    grid-row: 1;
  }
  .guide-split.is-flip .guide-figure {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .guide-split .guide-figure img {
    transform: none;
  }
}
@media (max-width: 720px) {
  .guide-split {
    grid-template-columns: 1fr;
  }
  .guide-split .guide-figure {
    justify-self: center;
  }
}
.guide-lightbox {
  padding: 56px 72px 48px;
  border: 0;
  background: transparent;
  color: #fff;
  max-width: 100vw;
  max-height: 100vh;
}
.guide-lightbox[open] {
  display: grid;
  place-items: center;
}
.guide-lightbox::backdrop {
  background: rgba(8, 32, 36, .86);
  backdrop-filter: blur(6px);
}
.guide-lightbox img {
  display: block;
  max-width: min(92vw, 780px);
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
  cursor: zoom-out;
}
.guide-lightbox.is-wide img {
  max-width: min(calc(100vw - 160px), 1280px);
}
.guide-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.guide-lightbox-close:hover,
.guide-lightbox-close:focus-visible,
.guide-lightbox-nav:hover,
.guide-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, .24);
  outline: none;
}
.guide-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.guide-lightbox-nav.is-prev { left: 12px; }
.guide-lightbox-nav.is-next { right: 12px; }
.guide-lightbox.is-single .guide-lightbox-nav { display: none; }
.guide-lightbox-stage {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 100%;
}
.guide-lightbox-caption {
  margin: 0;
  max-width: min(92vw, 780px);
  font-size: .92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .82);
  text-align: center;
}
.guide-lightbox.is-wide .guide-lightbox-caption {
  max-width: min(96vw, 1400px);
}
@media (max-width: 720px) {
  .guide-lightbox {
    padding: 52px 16px 32px;
  }
  .guide-lightbox-nav.is-prev { left: 6px; }
  .guide-lightbox-nav.is-next { right: 6px; }
  .guide-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }
  .guide-lightbox.is-wide img {
    max-width: min(calc(100vw - 88px), 1280px);
  }
}
.guide-quick-answer,
.guide-callout {
  background: var(--background-grey);
  border: 1px solid rgba(15,76,84,.1);
  border-left: 5px solid var(--secondary);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 0 0 1.6rem;
}
.guide-quick-answer h2,
.guide-callout h2 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.guide-quick-answer p,
.guide-callout p { margin: 0; }
.guide-table-wrap { overflow-x: auto; margin: 1.2rem 0 1.6rem; }
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.guide-table th,
.guide-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.guide-table th {
  background: #f4f6f9;
  color: var(--primary);
}
.guide-table-wrap.is-matrix {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.guide-table.compare-matrix {
  border-collapse: separate;
  border-spacing: 0;
  font-size: .92rem;
  line-height: 1.45;
}
.guide-table.compare-matrix th,
.guide-table.compare-matrix td {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
}
.guide-table.compare-matrix thead th {
  background: var(--background-grey);
  vertical-align: top;
  font-size: 1.02rem;
  font-weight: 700;
  width: 27%;
}
.guide-table.compare-matrix thead th:first-child {
  width: 19%;
  background: var(--background-grey);
}
.guide-table.compare-matrix .compare-matrix-examples {
  display: block;
  margin-top: 5px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}
.guide-table.compare-matrix thead th.is-vaktos {
  background: var(--primary);
  color: #fff;
}
.guide-table.compare-matrix thead th.is-vaktos .compare-matrix-examples {
  color: rgba(255, 255, 255, .82);
}
.guide-table.compare-matrix tbody th {
  background: #fff;
  font-weight: 700;
  color: var(--primary);
  min-width: 9.5rem;
}
.guide-table.compare-matrix td.is-vaktos {
  background: rgba(15, 76, 84, .06);
  font-weight: 600;
  color: var(--dark-text);
}
.guide-table.compare-matrix tbody tr:last-child th,
.guide-table.compare-matrix tbody tr:last-child td {
  border-bottom: 0;
}
.guide-table.compare-matrix tr.compare-matrix-fit th,
.guide-table.compare-matrix tr.compare-matrix-fit td {
  background: var(--background-grey);
  font-weight: 600;
}
.guide-table.compare-matrix tr.compare-matrix-fit td.is-vaktos {
  background: rgba(15, 76, 84, .12);
  color: var(--primary);
}

@media (max-width: 760px) {
  .guide-table-wrap.is-matrix {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .guide-table.compare-matrix {
    font-size: .95rem;
  }
  .guide-table.compare-matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .guide-table.compare-matrix,
  .guide-table.compare-matrix tbody,
  .guide-table.compare-matrix tr,
  .guide-table.compare-matrix th,
  .guide-table.compare-matrix td {
    display: block;
    width: 100%;
  }
  .guide-table.compare-matrix tbody tr {
    margin: 0 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }
  .guide-table.compare-matrix tbody th,
  .guide-table.compare-matrix tbody td {
    border: 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
    width: auto;
  }
  .guide-table.compare-matrix tbody th {
    background: var(--background-grey);
    padding: 12px 16px;
    font-size: .95rem;
  }
  .guide-table.compare-matrix tbody td {
    padding: 12px 16px 14px;
  }
  .guide-table.compare-matrix tbody td:last-child {
    border-bottom: 0;
  }
  .guide-table.compare-matrix td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .guide-table.compare-matrix td.is-vaktos {
    background: rgba(15, 76, 84, .07);
  }
  .guide-table.compare-matrix td.is-vaktos::before {
    color: var(--secondary);
  }
  .guide-table.compare-matrix tr.compare-matrix-fit th {
    background: var(--primary);
    color: #fff;
  }
  .guide-table.compare-matrix tr.compare-matrix-fit td {
    background: #fff;
  }
  .guide-table.compare-matrix tr.compare-matrix-fit td.is-vaktos {
    background: rgba(15, 76, 84, .08);
    color: var(--primary);
  }
}
.guide-faq { margin-top: 2.4rem; }
.guide-faq h2 { text-align: left; margin-bottom: 20px; }
.guide-faq .faq-list { margin: 0; max-width: none; }
.guide-related { margin: 2.4rem 0 0; }
.guide-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.guide-related-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.guide-related-list a:hover { border-color: var(--secondary); }
.guide-cta { padding-bottom: 40px; }
.resource-groups { display: grid; gap: 36px; }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.resource-grid a {
  display: block;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  color: inherit;
}
.resource-grid a:hover { border-color: var(--secondary); }
.resource-grid h3 { margin: 0 0 8px; font-size: 1.12rem; }
.resource-grid p { margin: 0; color: #495057; font-size: .95rem; }

@media (max-width: 900px) {
  .guide-hero { padding-top: 96px; }
  .guide-hero h1 { font-size: 1.75rem; }
  .guide-hero:has(.guide-kicker) h1 { font-size: 1.85rem; }
  .guide-hero.has-media .container {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 64px;
  }
  .guide-hero.has-media .guide-hero-copy { max-width: none; }
  .guide-hero.has-media .hero-mockup-container { transform: none; }
  .guide-hero.has-media h1,
  .guide-hero.has-media:has(.guide-kicker) h1 { font-size: 1.95rem; }
}
