
:root {
  --azure: #193E60;
  --azure-dk: #17344d;
  --azure-lt: #205582;
  --lime: #bbd544;
  --lime-dim: #a7c241;
  --sage: #74908C;
  --granite: #606060;
  --platinum: #ebeae3;
  --champagne: #F8DCA0;
  --bg: #ffffff;
  --card: #FFFFFF;
  --border: rgba(25, 62, 96, 0.10);
  --text: #193E60;
  --text-body: #3B4E5C;
  --text-muted: #606060;
  --nav-link: #1e425f;
  
  --koan-teal: #43737C;
  --koan-ember: #FC4C00;
  --koan-dusk: #8686AC;
  --koan-ink: #0f0e47;
  --r: 14px;
  --rlg: 22px;
  --t: 0.32s cubic-bezier(.4, 0, .2, 1);
  --sh: 0 2px 16px rgba(25, 62, 96, 0.07);
  --shlg: 0 16px 56px rgba(25, 62, 96, 0.13);
  --fh: 'Nunito', sans-serif;
  --fb: 'Nunito Sans', sans-serif;
  
  --bp-celular-max: 430px;
  --bp-tablet-max: 1023px;
  --bp-desktop-min: 1024px;
  --section-px: clamp(1.25rem, 5vw, 5rem);
  --section-py: clamp(3.5rem, 7vw, 5.5rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


.logo-img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 var(--section-px);
  min-height: 88px;
  background: #fff;
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

a.nav-logo {
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  cursor: pointer;
  height: 36px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  max-width: min(200px, 45vw);
  object-fit: contain;
  object-position: left center;
}

.nav-logo .logo-img--dark {
  display: none;
}

html.theme-dark .nav-logo .logo-img--light {
  display: none;
}

html.theme-dark .nav-logo .logo-img--dark {
  display: block;
  filter: brightness(0) invert(1);
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--azure);
  border-radius: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links button {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nav-link);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--azure);
}


.nav-end {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}


.nav-theme {
  display: none !important;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background var(--t);
}

.nav-theme:hover {
  background: rgba(25, 62, 96, 0.06);
}

.nav-theme img {
  width: 28px;
  height: 28px;
}

.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff !important;
  color: var(--azure) !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 33px !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  border: 2px solid var(--lime-dim) !important;
  box-shadow: none !important;
  transition: all var(--t) !important;
}

.nav-cta:hover {
  background: var(--platinum) !important;
  transform: translateY(-1px);
}


.nav-links a.nav-link--koan {
  color: var(--koan-teal);
}

.nav-links a.nav-link--koan:hover {
  color: var(--azure);
}

body.page-koan .nav-cta,
body.page-koan .nav-cta-mob {
  border-color: var(--koan-teal) !important;
}

html.theme-dark body.page-koan .nav-cta,
html.theme-dark body.page-koan .nav-cta-mob {
  border-color: var(--koan-teal) !important;
}

html.theme-dark .nav-links a.nav-link--koan {
  color: var(--koan-teal);
}

html.theme-dark .nav-links a.nav-link--koan:hover {
  color: var(--lime);
}

.nav-links a.nav-link--koan-champagne {
  color: var(--champagne);
  font-weight: 700;
}

.nav-links a.nav-link--koan-champagne:hover {
  color: var(--azure);
}

html.theme-dark .nav-links a.nav-link--koan-champagne {
  color: var(--champagne);
}

html.theme-dark .nav-links a.nav-link--koan-champagne:hover {
  color: var(--lime);
}

.nav-links a.nav-link--koan-ember {
  color: var(--koan-ember);
  font-weight: 700;
}

.nav-links a.nav-link--koan-ember:hover {
  color: var(--azure);
}

html.theme-dark .nav-links a.nav-link--koan-ember {
  color: var(--koan-ember);
}

html.theme-dark .nav-links a.nav-link--koan-ember:hover {
  color: var(--lime);
}

.nav-links a.nav-link--koan-dusk {
  color: var(--koan-dusk);
  font-weight: 700;
}

.nav-links a.nav-link--koan-dusk:hover {
  color: var(--koan-ink);
}

html.theme-dark .nav-links a.nav-link--koan-dusk {
  color: var(--koan-dusk);
}

html.theme-dark .nav-links a.nav-link--koan-dusk:hover {
  color: var(--lime);
}

body.page-koan--champagne {
  --koan-teal: var(--champagne);
}

body.page-koan--champagne .nav-link--koan,
body.page-koan--champagne .nav-link--koan:hover {
  color: #43737C !important;
  font-weight: 700;
}

body.page-koan--champagne .nav-link--koan:hover {
  color: var(--azure) !important;
}

html.theme-dark body.page-koan--champagne .nav-link--koan,
html.theme-dark body.page-koan--champagne .nav-link--koan:hover {
  color: #43737C !important;
}

html.theme-dark body.page-koan--champagne .nav-link--koan:hover {
  color: var(--lime) !important;
}

body.page-koan--champagne #page-koan .k-btn-teal {
  color: var(--azure) !important;
  box-shadow: 0 4px 14px rgba(25, 62, 96, 0.14);
}

body.page-koan--champagne #page-koan .k-btn-teal:hover {
  box-shadow: 0 10px 28px rgba(25, 62, 96, 0.2);
}

body.page-koan--champagne .k-btn-gold-fill {
  color: var(--azure) !important;
}

body.page-koan--champagne .k-btn-outline-gold:hover {
  background: rgba(248, 220, 160, 0.35);
}

body.page-koan--champagne .k-btn-white-outline:hover {
  background: rgba(248, 220, 160, 0.22);
}

body.page-koan--champagne .k-acc-item.is-open .k-acc-toggle {
  color: var(--azure) !important;
}

body.page-koan--champagne .k-feat-pill,
body.page-koan--champagne .k-acc-item.is-open .k-feat-pill {
  background: rgba(248, 220, 160, 0.2);
  color: #fff;
  border-color: var(--champagne);
}

body.page-koan--ember {
  --koan-teal: var(--koan-ember);
}

body.page-koan--ember .nav-link--koan,
body.page-koan--ember .nav-link--koan:hover {
  color: #43737C !important;
  font-weight: 700;
}

body.page-koan--ember .nav-link--koan:hover {
  color: var(--azure) !important;
}

html.theme-dark body.page-koan--ember .nav-link--koan,
html.theme-dark body.page-koan--ember .nav-link--koan:hover {
  color: #43737C !important;
}

html.theme-dark body.page-koan--ember .nav-link--koan:hover {
  color: var(--lime) !important;
}

body.page-koan--ember #page-koan .k-btn-teal {
  box-shadow: 0 4px 14px rgba(252, 76, 0, 0.38);
}

body.page-koan--ember #page-koan .k-btn-teal:hover {
  box-shadow: 0 10px 28px rgba(252, 76, 0, 0.32);
}

body.page-koan--ember .k-btn-gold-fill {
  box-shadow: 0 4px 14px rgba(252, 76, 0, 0.28);
}

body.page-koan--ember .k-btn-gold-fill:hover {
  box-shadow: 0 10px 28px rgba(252, 76, 0, 0.32);
}

body.page-koan--ember .k-btn-outline-gold:hover {
  background: rgba(252, 76, 0, 0.12);
}

body.page-koan--ember .k-btn-white-outline:hover {
  background: rgba(252, 76, 0, 0.18);
}

body.page-koan--ember .k-feat-pill,
body.page-koan--ember .k-acc-item.is-open .k-feat-pill {
  background: rgba(252, 76, 0, 0.22);
  color: #fff;
  border-color: var(--koan-ember);
}

body.page-koan--dusk {
  --azure: var(--koan-ink);
  --koan-teal: var(--koan-dusk);
}

body.page-koan--dusk .nav-link--koan,
body.page-koan--dusk .nav-link--koan:hover {
  color: #43737C !important;
  font-weight: 700;
}

body.page-koan--dusk .nav-link--koan:hover {
  color: #0f0e47 !important;
}

html.theme-dark body.page-koan--dusk .nav-link--koan,
html.theme-dark body.page-koan--dusk .nav-link--koan:hover {
  color: #43737C !important;
}

html.theme-dark body.page-koan--dusk .nav-link--koan:hover {
  color: var(--lime) !important;
}

body.page-koan--dusk #page-koan .k-btn-teal {
  box-shadow: 0 4px 14px rgba(134, 134, 172, 0.42);
}

body.page-koan--dusk #page-koan .k-btn-teal:hover {
  box-shadow: 0 10px 28px rgba(134, 134, 172, 0.36);
}

body.page-koan--dusk .k-btn-gold-fill {
  box-shadow: 0 4px 14px rgba(134, 134, 172, 0.32);
}

body.page-koan--dusk .k-btn-gold-fill:hover {
  box-shadow: 0 10px 28px rgba(134, 134, 172, 0.35);
}

body.page-koan--dusk .k-btn-outline-gold:hover {
  background: rgba(134, 134, 172, 0.14);
}

body.page-koan--dusk .k-btn-white-outline:hover {
  background: rgba(134, 134, 172, 0.22);
}

body.page-koan--dusk .k-feat-pill,
body.page-koan--dusk .k-acc-item.is-open .k-feat-pill {
  background: rgba(134, 134, 172, 0.2);
  color: #fff;
  border-color: var(--koan-dusk);
}

.nav-cta-mobile-li {
  display: none;
}

@media (min-width: 1024px) {
  .nav-burger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: wrap;
  }
}

@media (max-width: 1023px) {

  
  .nav-end {
    display: contents;
  }

  
  nav {
    --nav-pad-y: 0.65rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: calc(88px - 2 * var(--nav-pad-y)) auto;
    align-items: center;
    align-content: start;
    column-gap: 0.5rem;
    row-gap: 0;
    padding: var(--nav-pad-y) max(var(--section-px), env(safe-area-inset-right, 0px)) var(--nav-pad-y) max(var(--section-px), env(safe-area-inset-left, 0px));
    min-height: 88px;
    box-sizing: border-box;
  }

  .nav-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
  }

  .nav-burger {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid rgba(112, 112, 112, 0.2);
    margin-top: 0;
  }

  nav.nav-open .nav-links {
    display: flex;
    max-height: min(32rem, calc(100dvh - 5.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-links button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0;
    font-size: 1.05rem;
  }

  .nav-actions .nav-cta:not(.nav-cta-mob) {
    display: none !important;
  }

  .nav-cta-mobile-li {
    display: list-item;
  }

  .nav-cta-mob {
    display: inline-flex !important;
    margin-top: 0.35rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}


.btn-azure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--azure);
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(25, 62, 96, 0.24);
}

.btn-azure:hover {
  background: var(--azure-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(25, 62, 96, 0.3);
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--azure);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(187, 213, 68, 0.35);
}

.btn-lime:hover {
  background: #c5dc58;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(187, 213, 68, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--azure);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: 2px solid rgba(25, 62, 96, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
}

.btn-outline:hover {
  border-color: var(--azure);
  transform: translateY(-2px);
}

.btn-outline-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--azure);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  border: 2px solid var(--lime-dim);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
}

.btn-outline-lime:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.btn-ghost-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--platinum);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  border: 2px solid var(--lime);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
}

.btn-ghost-navy:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--azure);
  font-family: var(--fh);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.btn-white:hover {
  background: var(--platinum);
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
}

.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}


.eyebrow {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9rem;
}

.eyebrow::after {
  content: '';
  flex: 1;
  height: 2px;
  max-width: 44px;
  background: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px var(--section-px) var(--section-py);
  background: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-grid {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.1fr);
  grid-template-areas: "copy visual";
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    display: flex;
    align-items: center;
  }

  .hero-grid {
    width: 100%;
    flex: 0 0 auto;
  }

  .hero-screen-wrap--phone img {
    max-width: min(520px, 100%);
    max-height: min(86svh, 960px);
  }
}

@media (max-width: 1023px) {
  .hero {
    min-height: auto;
    display: block;
    padding-top: max(7.5rem, calc(1.5rem + env(safe-area-inset-top, 0px)));
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
    padding-bottom: var(--section-py);
  }

  .hero-slogan {
    margin-top: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    align-items: start;
  }

  .hero-visual {
    justify-self: center;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-area: copy;
  justify-self: start;
  max-width: min(40rem, 100%);
  padding-top: 0.5rem;
}

.hero h1,
.hero-h1-figma {
  font-family: var(--fh);
  font-size: clamp(2.75rem, 5.5vw, 5.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--azure);
  animation: fadeUp 0.65s 0.08s ease both;
}

.hero h1 .lime,
.hero-h1-figma .lime {
  color: var(--lime);
}

.hero-slogan {
  margin-top: 1.1rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2.65rem);
  color: var(--azure);
  animation: fadeUp 0.65s 0.15s ease both;
}

.hero-sub {
  margin-top: 1rem;
  font-family: var(--fh);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.85rem);
  color: var(--azure);
  line-height: 1.35;
  max-width: 36rem;
  animation: fadeUp 0.65s 0.22s ease both;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-screen-wrap {
  position: relative;
  width: 100%;
}

.hero-screen-wrap img {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  display: block;
  height: auto;
  object-fit: contain;
}


.hero-screen-wrap--phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-screen-wrap--phone img {
  width: auto;
  max-width: min(420px, 100%);
  max-height: min(75vh, 800px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 1023px) {
  .hero-screen-wrap img {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-screen-wrap--phone img {
    max-width: min(360px, 86vw);
    max-height: min(64vh, 640px);
  }
}

.live-demo-aside {
  position: relative;
  min-width: 0;
}

.live-demo-embed-card {
  width: 100%;
  max-width: min(420px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.live-demo-embed-card .koan-demo-shot {
  min-height: 0;
}

.live-demo .live-demo-note {
  font-family: var(--fh);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0.75rem 0 0;
  max-width: 40rem;
  opacity: 0.9;
}

html.theme-dark .live-demo .live-demo-note {
  color: rgba(235, 234, 227, 0.78);
}

.hero-iphone-card {
  width: 100%;
  max-width: min(400px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.live-demo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.live-demo-frame {
  --appetize-embed-h: min(70vh, 720px);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  line-height: 0;
  overscroll-behavior: contain;
}

.live-demo-frame .appetize-iframe {
  display: block;
  min-height: var(--appetize-embed-h);
  height: var(--appetize-embed-h);
  width: 100%;
  max-width: 100%;
  border: 0;
  vertical-align: top;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
}

@media (max-width: 1023px) {
  .live-demo-inner {
    min-height: 0;
    overflow-x: hidden;
  }

  .live-demo-aside,
  .live-demo-embed-card,
  .live-demo-embed-card .koan-demo-shot,
  .live-demo-stack {
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .live-demo-frame {
    --appetize-embed-h: min(70dvh, 680px);
    width: 100%;
    height: var(--appetize-embed-h);
    max-height: var(--appetize-embed-h);
    flex-shrink: 0;
    overflow: hidden;
  }

  .live-demo-frame .appetize-iframe {
    box-sizing: border-box;
    min-height: var(--appetize-embed-h);
    height: var(--appetize-embed-h) !important;
    max-height: var(--appetize-embed-h) !important;
  }
}

html.theme-dark .live-demo-frame {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.live-demo-stack[data-live-demo-embed='mock'] .live-demo-frame {
  display: none;
}

.live-demo-stack[data-live-demo-embed='appetize'] .hero-demo-mock {
  display: none;
}

.hero-demo-mock {
  --demo-h: min(70vh, 720px);
  width: 100%;
  max-width: min(400px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  background: #f2f2f7;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 20px 50px -12px rgba(25, 62, 96, 0.12);
  overflow: hidden;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    system-ui,
    sans-serif;
}

.hero-demo-mock__inner {
  min-height: var(--demo-h);
  padding: 0.5rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  color: #1c1c1e;
  box-sizing: border-box;
}

.hero-demo-mock__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #3a3a3c;
  margin-bottom: 0.5rem;
}

.hero-demo-mock__status-icons {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.hero-demo-mock__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #193e60;
  margin: 0 0 0.25rem;
}

.hero-demo-mock__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #193e60;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.hero-demo-mock__lede {
  font-size: 0.85rem;
  line-height: 1.35;
  color: #3a3a3c;
  margin: 0 0 1rem;
}

.hero-demo-mock__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.hero-demo-mock__list li {
  border-bottom: 1px solid #e5e5ea;
}

.hero-demo-mock__list li:last-child {
  border-bottom: 0;
}

.hero-demo-mock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.78rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c1e;
  text-decoration: none;
  transition: background 0.15s ease;
}

.hero-demo-mock__row:hover {
  background: #f2f2f7;
}

.hero-demo-mock__row:focus-visible {
  outline: 2px solid #193e60;
  outline-offset: 2px;
  z-index: 1;
  position: relative;
}

.hero-demo-mock__chev {
  color: #8e8e93;
  font-size: 1.1rem;
  font-weight: 400;
}

.hero-demo-mock__btns {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.hero-demo-mock__btn {
  display: block;
  text-align: center;
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--fh), -apple-system, system-ui, sans-serif;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.hero-demo-mock__btn:active {
  transform: scale(0.98);
}

.hero-demo-mock__btn--primary {
  background: #193e60;
  color: #fff;
  box-shadow: 0 2px 8px rgba(25, 62, 96, 0.25);
}

.hero-demo-mock__btn--primary:hover {
  opacity: 0.92;
}

.hero-demo-mock__btn--secondary {
  background: #fff;
  color: #193e60;
  border: 1.5px solid rgba(25, 62, 96, 0.35);
}

.hero-demo-mock__btn--secondary:hover {
  background: rgba(25, 62, 96, 0.06);
}

html.theme-dark .hero-demo-mock {
  background: #1c1c1e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 50px -12px rgba(0, 0, 0, 0.4);
}

html.theme-dark .hero-demo-mock__inner {
  color: #e8e8ed;
}

html.theme-dark .hero-demo-mock__status {
  color: #aeaeb2;
}

html.theme-dark .hero-demo-mock__lede {
  color: #aeaeb2;
}

html.theme-dark .hero-demo-mock__list {
  background: #2c2c2e;
  box-shadow: none;
}

html.theme-dark .hero-demo-mock__list li {
  border-color: #3a3a3c;
}

html.theme-dark .hero-demo-mock__row {
  color: #f2f2f7;
}

html.theme-dark .hero-demo-mock__row:hover {
  background: #3a3a3c;
}

html.theme-dark .hero-demo-mock__btn--secondary {
  background: #2c2c2e;
  border-color: rgba(255, 255, 255, 0.2);
  color: #e8e8ed;
}

html.theme-dark .hero-demo-mock__btn--secondary:hover {
  background: #3a3a3c;
}

@media (max-width: 1023px) {
  .hero-demo-mock {
    --demo-h: min(58vh, 600px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.device-preview {
  padding: var(--section-py) var(--section-px);
  background: #f7f8f9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.device-preview-inner {
  max-width: 120rem;
  margin: 0 auto;
}

.device-preview-title {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--azure);
  margin-bottom: 0.5rem;
}

.device-preview-lede {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 42rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.device-preview-lede code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(25, 62, 96, 0.08);
}

.device-preview-lede a {
  color: var(--azure-lt);
  font-weight: 600;
}

.device-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: min(960px, 100%);
  margin: 0 auto;
}

@media (min-width: 1500px) {
  .device-preview-grid {
    grid-template-columns: 1fr 1fr;
    max-width: min(1600px, 100%);
    align-items: start;
  }
}

.device-preview-platform {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--azure);
  margin-bottom: 0.5rem;
}

.appetize-frame {
  --appetize-embed-h: min(86vh, 900px);
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  min-height: var(--appetize-embed-h);
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.appetize-iframe {
  display: block;
  width: 100%;
  min-height: var(--appetize-embed-h);
  height: var(--appetize-embed-h);
  border: 0;
}

html.theme-dark .device-preview {
  background: #121a22;
  border-color: rgba(255, 255, 255, 0.06);
}

html.theme-dark .appetize-frame {
  background: transparent;
  border: 0;
  box-shadow: none;
}

html.theme-dark .device-preview-title,
html.theme-dark .device-preview-platform {
  color: #e8eef3;
}

html.theme-dark .device-preview-lede {
  color: rgba(232, 238, 243, 0.85);
}

html.theme-dark .device-preview-lede code {
  background: rgba(255, 255, 255, 0.08);
}


.nosotros {
  position: relative;
  padding: var(--section-py) var(--section-px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 38, 58, 0.45) 0%, rgba(8, 22, 36, 0.52) 100%),
    url('assets/images/nosotros-section-bg.jpg') center / cover no-repeat;
}


.nosotros .eyebrow {
  color: #fff;
  gap: 0;
}

.nosotros .eyebrow::after {
  display: none;
  content: none;
}


.nosotros .nosotros-title {
  color: #fff;
  margin-top: 0.35rem;
}

.nosotros .nosotros-title__accent {
  color: var(--lime);
}

.nosotros-inner {
  max-width: 120rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.nosotros .nosotros-head,
.nosotros .mv-grid {
  max-width: min(40rem, 100%);
}

.nosotros-head {
  margin-bottom: 0.5rem;
}


.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 2.5vw, 2.5rem);
  margin-top: 2.5rem;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

@media (max-width: 640px) {
  .mv-grid {
    margin-top: 1.35rem;
  }
}

@media (max-width: 1023px) {
  .nosotros .nosotros-head,
  .nosotros .mv-grid {
    max-width: 100%;
  }

  .nosotros .eyebrow {
    justify-content: center;
  }

  .nosotros .nosotros-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.12em;
  }

  .nosotros-title__line--a::after,
  .nosotros-title__line--b::after {
    content: none;
  }

  .nosotros-title__line {
    display: block;
  }

  .nosotros .nosotros-title__accent {
    color: var(--lime);
  }
}

.mv-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  border-left: 4px solid var(--lime);
  padding: 0.15rem 0 0.15rem 1.25rem;
  margin: 0;
}

.mv-label {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.mv-text {
  font-family: var(--fh);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.85rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.45;
}

.mv-text strong {
  color: #fff;
  font-weight: 700;
}

.nosotros-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--azure);
  margin-top: 0.35rem;
}

.nosotros-title__line {
  display: inline;
}

.nosotros-title__line--a::after,
.nosotros-title__line--b::after {
  content: " ";
}

.nosotros-title .lime {
  color: var(--lime);
}


.koan-band,
.live-demo {
  padding: var(--section-py) var(--section-px);
  background: #fff;
  border: 1px solid rgba(112, 112, 112, 0.25);
}

.koan-band-inner,
.live-demo-inner {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 1023px) {
  .koan-brand {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .koan-band-inner,
  .live-demo-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .koan-band .nav-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

.koan-band-eyebrow {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--azure);
  margin-bottom: 0.35rem;
}

.koan-band h2,
.live-demo h2 {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1.05;
  color: var(--azure);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.koan-band h2 .lime,
.live-demo h2 .lime {
  color: var(--lime);
}

.koan-brand {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
  margin-bottom: 0.65rem;
  max-width: 100%;
}

.koan-brand__panel--logo {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.koan-brand__panel--text {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  text-align: left;
}

h3.koan-brand-name {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  color: var(--koan-teal);
  margin: 0;
  letter-spacing: -0.02em;
}

.koan-brand-logo {
  width: 120px;
  height: 64px;
  display: block;
  object-fit: contain;
}


.koan-brand-logo-wrap {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
}

.koan-brand-sub {
  font-family: var(--fh);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--azure);
  margin: 0;
  line-height: 1.35;
  max-width: 28rem;
  opacity: 0.95;
}

.koan-band-lead {
  font-family: var(--fh);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.85rem);
  color: var(--text-body);
  line-height: 1.4;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.koan-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.koan-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.2vw, 1.6rem);
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.85rem;
}


.koan-features .kf-ic,
.why-pts .kf-ic {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border: none;
  position: relative;
  overflow: hidden;
}

.koan-features .kf-ic .kf-ic-fg,
.why-pts .kf-ic .kf-ic-fg {
  position: relative;
  z-index: 1;
  width: 55% !important;
  height: 55% !important;
  object-fit: contain;
}

.koan-band-aside {
  position: relative;
}

.koan-demo-card {
  border: 1px solid #b9b9b7;
  border-radius: 30px;
  overflow: hidden;
}

.koan-demo-shot {
  padding: 1rem 1.25rem 1.25rem;
}

.koan-demo-card--media {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(25, 62, 96, 0.1);
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.koan-demo-card--media .koan-demo-shot {
  padding: 0;
  background: linear-gradient(180deg, #eef2f5 0%, #e8ecf0 100%);
}

.koan-demo-card--media .koan-demo-shot img {
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

html.theme-dark .koan-demo-card--media {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

html.theme-dark .koan-demo-card--media .koan-demo-shot {
  background: linear-gradient(180deg, #0f2a3d 0%, #0b1f2e 100%);
}

.hero-iphone-card.koan-demo-card--media,
.live-demo-embed-card.koan-demo-card--media {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-iphone-card.koan-demo-card--media .koan-demo-shot,
.live-demo-embed-card.koan-demo-card--media .koan-demo-shot {
  background: transparent !important;
  background-image: none !important;
}

.koan-demo-shot img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}


.why {
  padding: var(--section-py) var(--section-px);
  background: var(--azure);
}

.why-grid {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.why-col--left {
  min-width: 0;
}

.why-col--left .reveal {
  max-width: 40rem;
}

.why-col--right {
  min-width: 0;
  min-height: 0;
}

@media (max-width: 1023px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-col--right {
    display: none;
  }

  .why-col--left .reveal {
    max-width: 100%;
  }
}

.why .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  gap: 0;
}

.why .eyebrow::after {
  display: none;
  content: none;
}

.why .why-title {
  color: #fff;
}

.why .why-pt-title {
  color: #fff;
}

.why .why-pt-body {
  color: rgba(255, 255, 255, 0.9);
}

.why-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--azure);
  margin-top: 0.35rem;
}

.why-title .lime {
  color: var(--lime);
}

.why-pts {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1023px) {
  .why .why-pts {
    margin-top: 1.5rem;
  }
}

.why-pt {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.why-pt-title {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--azure);
}

.why-pt-body {
  color: var(--azure);
  font-family: var(--fh);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.45;
  margin-top: 0.35rem;
}


.cta-s {
  padding: var(--section-py) var(--section-px);
  background: var(--azure);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.cta-s .btn-azure {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  background: var(--lime);
  color: var(--azure);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cta-s .btn-azure:hover {
  background: #c5dc58;
  color: var(--azure);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.cta-s .nav-cta {
  padding: 0.85rem 1.75rem !important;
  border-radius: 38px !important;
}

.cta-s .cta-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.cta-s .cta-title span {
  color: var(--lime);
}

.cta-s .cta-sub {
  color: rgba(235, 234, 227, 0.92);
  font-family: var(--fh);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.8rem);
  max-width: 52rem;
  margin: 0 auto 2.5rem;
  line-height: 1.35;
  position: relative;
  text-align: center;
  opacity: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}


footer {
  max-width: 100%;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
  padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
  border-top: 1px solid var(--border);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-sizing: border-box;
}

a.f-logo {
  text-decoration: none;
  color: inherit;
}

.f-logo {
  height: 36px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.f-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.f-logo .logo-img--dark {
  display: none;
}

html.theme-dark .f-logo .logo-img--light {
  display: none;
}

html.theme-dark .f-logo .logo-img--dark {
  display: block;
  filter: brightness(0) invert(1);
}

.f-copy {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azure);
  font-family: var(--fh);
}

.f-links {
  display: flex;
  gap: 1.5rem;
}

.f-links a,
.f-links button {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azure);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fh);
  transition: color var(--t);
}

.f-links a:hover,
.f-links button:hover {
  color: var(--lime-dim);
}

html.theme-dark body {
  background: #0b1f32;
  color: var(--platinum);
}

html.theme-dark .hero,
html.theme-dark .why,
html.theme-dark footer {
  background: #0b1f32;
}

html.theme-dark .nosotros {
  background:
    linear-gradient(180deg, rgba(6, 18, 30, 0.55) 0%, rgba(4, 12, 22, 0.62) 100%),
    url('assets/images/nosotros-section-bg.jpg') center / cover no-repeat;
}

html.theme-dark nav {
  background: #0b1f32;
  border-bottom-color: rgba(235, 234, 227, 0.2);
}

html.theme-dark .nav-links a,
html.theme-dark .nav-links button {
  color: var(--platinum);
}

html.theme-dark .nav-cta {
  background: transparent !important;
  color: var(--platinum) !important;
  border-color: var(--lime) !important;
}

html.theme-dark .cta-s .nav-cta {
  background: #fff !important;
  color: var(--azure) !important;
  border-color: var(--lime-dim) !important;
}

html.theme-dark .cta-s .nav-cta:hover {
  background: var(--platinum) !important;
  color: var(--azure) !important;
}

html.theme-dark .koan-band,
html.theme-dark .live-demo {
  background: #0b1f32;
  border-color: rgba(235, 234, 227, 0.15);
}

html.theme-dark .koan-band-eyebrow,
html.theme-dark .koan-band h2,
html.theme-dark .live-demo .koan-band-eyebrow,
html.theme-dark .live-demo h2 {
  color: var(--platinum);
}

html.theme-dark .koan-features li {
  color: var(--platinum);
}

html.theme-dark .koan-band-lead {
  color: rgba(235, 234, 227, 0.92);
}

html.theme-dark .koan-brand-logo-wrap {
  background: transparent;
}

html.theme-dark .koan-brand-name {
  color: #6bb3c0;
}

html.theme-dark .koan-brand-sub {
  color: var(--platinum);
  opacity: 0.9;
}

html.theme-dark .mv-grid {
  border-color: rgba(235, 234, 227, 0.35);
}

html.theme-dark .mv-text,
html.theme-dark .why-title,
html.theme-dark .why-pt-title,
html.theme-dark .why-pt-body {
  color: var(--platinum);
}

html.theme-dark .why-pt-body {
  opacity: 0.92;
}

html.theme-dark .why .eyebrow {
  color: rgba(235, 234, 227, 0.88);
}

html.theme-dark .why .why-title,
html.theme-dark .why .why-pt-title {
  color: var(--platinum);
}

html.theme-dark .why .why-pt-body {
  color: rgba(235, 234, 227, 0.9);
  opacity: 1;
}

html.theme-dark .cta-s {
  background: var(--azure);
  border-top-color: rgba(255, 255, 255, 0.1);
}

html.theme-dark .nosotros .nosotros-title,
html.theme-dark .nosotros .eyebrow {
  color: #fff;
}

html.theme-dark .nosotros .nosotros-title__accent {
  color: var(--lime);
}

@media (max-width: 1023px) {
  html.theme-dark .nosotros .nosotros-title__accent {
    color: var(--lime);
  }
}

html.theme-dark .nosotros .mv-text {
  color: rgba(255, 255, 255, 0.95);
}

html.theme-dark .f-copy,
html.theme-dark .f-links a {
  color: var(--platinum);
}


#page-koan {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  --koan-gold: var(--koan-teal);
  --koan-band: var(--azure);
  --koan-line: #707070;
  --koan-azure-accordion-open: #195a9e;
  --koan-azure-accordion-open: color-mix(
    in srgb,
    color-mix(in srgb, var(--koan-band) 16%, var(--azure-lt) 84%) 90%,
    #2478c8 10%
  );
}

body.page-koan--dusk #page-koan {
  --koan-azure-accordion-open: color-mix(
    in srgb,
    color-mix(in srgb, var(--koan-ink) 55%, var(--koan-dusk) 45%) 92%,
    #4c4a78 8%
  );
}

body.page-koan--dusk #page-koan .k-acc .k-feat-pill {
  background: rgba(134, 134, 172, 0.2);
  border-color: var(--koan-dusk);
  color: var(--koan-dusk);
}

body.page-koan--dusk #page-koan .k-acc-item.is-open .k-feat-pill {
  background: rgba(134, 134, 172, 0.3);
  border-color: var(--koan-dusk);
  color: #f2f1fa;
}

body.page-koan--dusk #page-koan .k-acc-header:focus-visible {
  outline: 2px solid rgba(134, 134, 172, 0.65);
  outline-offset: 2px;
}


#page-koan .k-btn-teal {
  background: var(--koan-teal);
  box-shadow: 0 4px 14px rgba(67, 115, 124, 0.4);
}

#page-koan .k-btn-teal:hover {
  box-shadow: 0 10px 28px rgba(67, 115, 124, 0.35);
}


.k-hero {
  width: 100%;
  padding: 120px var(--section-px) var(--section-py);
  background: #fff;
  text-align: center;
}

.k-hero-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.k-hero-h1 {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--azure);
}

.k-hero-h1 .kh-teal {
  color: var(--koan-teal);
}

.k-hero-sub {
  margin-top: 1.5rem;
  font-family: var(--fh);
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--azure);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.k-hero-sub--desk {
  display: block;
}

.k-hero-sub--mob {
  display: none;
}

@media (max-width: 1023px) {
  .k-hero {
    padding-top: max(7.5rem, calc(1.5rem + env(safe-area-inset-top, 0px)));
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
    padding-bottom: var(--section-py);
  }

  .k-hero-sub--desk {
    display: none;
  }

  .k-hero-sub--mob {
    display: block;
  }
}

.k-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}


.k-btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: auto;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  background: var(--koan-band, var(--azure));
  color: #fff !important;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(25, 62, 96, 0.4);
}

.k-btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(25, 62, 96, 0.38);
}

.k-btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: auto;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  border: 2px solid var(--koan-gold);
  background: transparent;
  color: var(--azure) !important;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), color var(--t), transform var(--t);
  box-shadow: none;
}

.k-btn-outline-gold:hover {
  background: rgba(67, 115, 124, 0.12);
  transform: translateY(-2px);
}

.k-btn-outline-gold img {
  width: 11px;
  height: 18px;
}

.k-hero-shot {
  width: 100%;
  max-width: 110rem;
  margin: 2.5rem auto 0;
  padding: 0 clamp(0.5rem, 3vw, 2rem);
}

.k-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.k-stats-wrap {
  width: 100%;
  max-width: 110rem;
  margin: 2rem auto 0;
  padding: 0 var(--section-px);
  box-sizing: border-box;
}

.k-stats-line {
  border: none;
  border-top: 1px solid rgba(112, 112, 112, 0.35);
  margin: 0;
}

.k-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 90rem;
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  box-sizing: border-box;
}

.k-stat-div {
  width: 1px;
  align-self: stretch;
  min-height: 4rem;
  background: rgba(112, 112, 112, 0.45);
}

.k-stat {
  text-align: center;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  height: 100%;
}

.k-stat-val {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 6.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--azure);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.k-stat-core {
  display: inline-block;
  line-height: 1;
}

.k-stat-lbl {
  font-family: var(--fh);
  font-size: clamp(0.55rem, 1.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--azure);
  margin-top: 0.35rem;
  opacity: 0.92;
  flex-shrink: 0;
  width: 100%;
}

.k-stat-plus {
  display: inline;
  color: var(--koan-teal);
}

.k-stat-val--fiscal {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--fh);
}

.k-stat-fiscal-word {
  display: inline-block;
  line-height: 1;
}

.k-stat-fiscal-check {
  display: inline-block;
  vertical-align: -0.2em;
  width: 1.7cap;
  height: 1.7cap;
  min-width: 0.95em;
  min-height: 0.95em;
  margin-left: 0.1em;
  color: var(--koan-teal);
  flex: none;
}


.k-teal {
  background: var(--koan-band, var(--koan-teal));
  border: 1px solid var(--koan-line);
  padding: var(--section-py) var(--section-px);
}

.k-teal-inner {
  max-width: 110rem;
  margin: 0 auto;
}

.k-teal-inner--center {
  text-align: center;
}

.k-feat-head {
  margin: 0 auto 1.25rem;
  max-width: 52rem;
}

.k-eyebrow-gold {
  font-family: var(--fh);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--koan-gold);
  margin-bottom: 0.5rem;
}

.k-feat-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 4.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: none;
  text-align: center;
}

.k-feat-title .kt-gold {
  color: var(--koan-gold);
}

.k-feat-title-dim {
  color: #ebeae3;
  font-weight: 900;
}

.k-feat-lead {
  font-family: var(--fh);
  font-size: clamp(1rem, 1.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  max-width: 42rem;
  margin: 1.25rem auto 0;
  text-align: center;
  opacity: 0.95;
}


.k-acc {
  width: 100%;
  max-width: 44rem;
  margin: 0.75rem auto 0;
  --k-acc-bg-open: var(--koan-azure-accordion-open);
  text-align: left;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.k-acc-item {
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease;
}

.k-acc-item:hover:not(.is-open) {
  background: var(--k-acc-bg-open);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.k-acc-item.is-open {
  background: var(--k-acc-bg-open);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.k-acc-h3 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.k-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.05rem 1.1rem 1.05rem 1.2rem;
  text-align: left;
  font: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  background: transparent;
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.3;
  transition: color 0.2s ease, background 0.2s ease;
}


.k-acc-item.is-open .k-acc-header,
.k-acc-item.is-open .k-acc-title {
  color: var(--koan-teal);
}

.k-acc-item.is-open .k-acc-header {
  background: transparent;
}

.k-acc-item:hover:not(.is-open) .k-acc-header {
  color: var(--koan-teal);
}

.k-acc-header:focus {
  outline: none;
}

.k-acc-header:focus-visible {
  outline: 2px solid rgba(160, 220, 230, 0.7);
  outline-offset: 2px;
}

.k-acc-title {
  flex: 1;
  min-width: 0;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  hyphens: auto;
}


.k-acc-toggle {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--k-acc-bg-open);
  border: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}


.k-acc-item:hover:not(.is-open) .k-acc-toggle {
  background: #3d6774;
  background: color-mix(in srgb, var(--koan-teal) 38%, var(--k-acc-bg-open) 62%);
  color: var(--koan-teal);
  box-shadow: none;
}


.k-acc-item.is-open .k-acc-toggle {
  background: var(--koan-teal);
  color: #fff;
  box-shadow: none;
}

.k-acc-icon {
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-top: -3px;
  letter-spacing: 0;
}

.k-acc-panel {
  text-align: left;
  border-top: none;
  
  background: transparent;
  padding: 0 1.2rem 1.2rem 1.2rem;
}


.k-acc-item.is-open .k-acc-panel {
  padding-top: 0.2rem;
}

.k-acc-panel p {
  font-family: var(--fh);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  max-width: none;
  margin: 0;
  text-align: left;
  opacity: 0.98;
  transition: color 0.2s ease;
}

.k-acc .k-feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.k-acc .k-feat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 38px;
  border: 1.5px solid var(--koan-teal);
  background: rgba(25, 62, 96, 0.22);
  font-family: var(--fh);
  font-size: clamp(0.65rem, 1.1vw, 0.78rem);
  font-weight: 700;
  color: var(--koan-teal);
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.k-acc-item.is-open .k-feat-pill {
  border-color: var(--koan-teal);
  color: var(--koan-teal);
  background: rgba(25, 62, 96, 0.28);
}


.k-why {
  padding: var(--section-py) var(--section-px);
  background: #fff;
}

.k-why-inner {
  max-width: 110rem;
  margin: 0 auto;
}

.k-why-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}

@media (max-width: 1023px) {
  .k-why-inner--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 640px) {
  .k-why-inner--split {
    gap: 0.85rem;
  }
}

.k-why-hdr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  min-height: min(50vh, 22rem);
}

@media (max-width: 1023px) {
  .k-why-hdr {
    min-height: 0;
  }
}


.k-why-hdr .eyebrow {
  color: var(--koan-teal);
  margin-bottom: 0.75rem;
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
}

.k-why-hdr .eyebrow::after {
  display: none;
}

.k-why-title {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.85vw, 5.45rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--azure);
  margin-top: 0.35rem;
  max-width: 18ch;
}

.k-why-title .kw-teal {
  color: var(--koan-teal);
}

.k-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 2.5vw, 1.85rem);
}


.k-why-item {
  --k-why-title-fs: clamp(1.15rem, 2.05vw, 1.65rem);
  --k-why-check-size: 1.75cap;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.4rem;
  align-items: start;
}

.k-why-bad {
  grid-column: 1 / -1;
  grid-row: 1;
  font-family: var(--fh);
  font-size: clamp(0.95rem, 1.55vw, 1.18rem);
  font-weight: 500;
  text-decoration: line-through;
  color: rgba(25, 62, 96, 0.52);
  margin: 0 0 0.2rem 0;
}

.k-why-item-head {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
  grid-column: 1 / -1;
  grid-row: 2;
}

.k-why-check {
  font-family: var(--fh);
  font-size: var(--k-why-title-fs);
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--k-why-check-size, 1.75cap);
  height: var(--k-why-check-size, 1.75cap);
  min-width: 1.1em;
  min-height: 1.1em;
  box-sizing: border-box;
  margin: max(0px, calc(0.5 * (1.2 * 1em - var(--k-why-check-size, 1.75cap)))) 0 0 0;
  padding: 0;
  overflow: hidden;
}

.k-why-check-svg {
  display: block;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.k-why-check-path {
  stroke: var(--koan-gold);
  stroke-width: 2.75;
}

.k-why-item-title {
  flex: 1;
  min-width: 0;
  font-family: var(--fh);
  font-weight: 700;
  font-size: var(--k-why-title-fs);
  line-height: 1.2;
  color: var(--azure);
  margin: 0;
}

.k-why-item:nth-child(2) .k-why-item-title {
  color: var(--koan-teal);
}

.k-why-body {
  grid-column: 1 / -1;
  grid-row: 3;
  font-family: var(--fh);
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--azure);
  margin: 0;
}


.k-cta-bottom {
  position: relative;
  padding: var(--section-py) var(--section-px);
  background: var(--koan-band, var(--koan-teal));
  border: 1px solid var(--koan-line);
  text-align: center;
}

.k-cta-bottom h2 {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.12em;
}

.k-cta-h2-line1,
.k-cta-h2-line2 {
  display: block;
}

.k-cta-bottom h2 .k-gold {
  color: var(--koan-gold);
}

.k-cta-bottom>p {
  font-family: var(--fh);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.k-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 481px) {
  #page-koan .k-hero-cta,
  #page-koan .k-cta-row {
    align-items: stretch;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  #page-koan .k-hero-cta .k-btn-teal,
  #page-koan .k-hero-cta .k-btn-outline-gold,
  #page-koan .k-cta-row .k-btn-gold-fill,
  #page-koan .k-cta-row .k-btn-white-outline {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    justify-content: center;
    box-sizing: border-box;
  }
}

.k-btn-gold-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  background: var(--koan-gold);
  color: #fff !important;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(25, 62, 96, 0.12);
}

.k-btn-gold-fill:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 10px 28px rgba(25, 62, 96, 0.16);
}

.k-btn-gold-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.k-btn-gold-img img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 38px;
  pointer-events: none;
}

.k-btn-gold-img span {
  position: relative;
  z-index: 1;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--azure);
  padding: 0.85rem 1.75rem;
}

.k-btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: auto;
  min-height: auto;
  padding: 0.85rem 1.75rem;
  border-radius: 38px;
  border: 2px solid var(--koan-teal);
  background: transparent;
  color: #fff !important;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), transform var(--t);
}

.k-btn-white-outline:hover {
  background: rgba(67, 115, 124, 0.25);
  transform: translateY(-2px);
}

.k-btn-white-outline img {
  width: 11px;
  height: 18px;
  filter: brightness(0) invert(1);
}


#page-koan .k-btn-outline-gold,
#page-koan .k-btn-white-outline {
  border: 2px solid var(--koan-teal);
}

html.theme-dark #page-koan .k-hero {
  background: #0b1f32;
}

html.theme-dark #page-koan .k-hero-h1,
html.theme-dark #page-koan .k-hero-sub,
html.theme-dark #page-koan .k-stat-val,
html.theme-dark #page-koan .k-stat-lbl {
  color: var(--platinum);
}

html.theme-dark #page-koan .k-stat-plus,
html.theme-dark #page-koan .k-stat-fiscal-check {
  color: var(--koan-teal);
}

html.theme-dark #page-koan .k-why {
  background: #0b1f32;
}

html.theme-dark #page-koan .k-why-hdr .eyebrow {
  color: var(--koan-teal);
}

html.theme-dark #page-koan .k-why-title,
html.theme-dark #page-koan .k-why-item-title {
  color: var(--platinum);
}

html.theme-dark #page-koan .k-why-item:nth-child(2) .k-why-item-title {
  color: var(--koan-teal);
}

html.theme-dark #page-koan .k-why-title .kw-teal {
  color: var(--koan-teal);
}

html.theme-dark #page-koan .k-why-bad {
  color: rgba(163, 189, 212, 0.52);
}

html.theme-dark #page-koan .k-why-body {
  color: rgba(235, 234, 227, 0.88);
}

html.theme-dark #page-koan footer {
  background: #0b1f32;
  border-top-color: rgba(235, 234, 227, 0.2);
}

html.theme-dark #page-koan .f-copy,
html.theme-dark #page-koan .f-links a {
  color: var(--platinum);
}


.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: none; 
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--t);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  border-radius: 32px;
  box-shadow: var(--shlg);
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform var(--t);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 2.5rem 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--fh);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--azure);
}

.modal-close-x {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azure);
  transition: opacity var(--t);
}

.modal-close-x:hover {
  opacity: 0.7;
}

.modal-body {
  padding: 0 3rem 1.5rem;
  overflow-y: auto;
  font-family: var(--fb);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--azure);
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(25, 62, 96, 0.1);
  border-radius: 10px;
}

.modal-footer {
  padding: 1rem 3rem 2.5rem;
  display: flex;
  justify-content: flex-end;
}

.modal-btn-close {
  background: var(--azure);
  color: #fff;
  border: none;
  border-radius: 38px;
  padding: 0.75rem 2.5rem;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--t), background var(--t);
}

.modal-btn-close:hover {
  background: var(--azure-dk);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .modal-container {
    border-radius: 24px;
  }
  .modal-header, .modal-body, .modal-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .modal-header { padding-top: 1.5rem; }
  .modal-footer { padding-bottom: 1.5rem; }
  .modal-title { font-size: 1.5rem; }
}

html.theme-dark .modal-container {
  background: var(--azure);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
html.theme-dark .modal-title,
html.theme-dark .modal-body,
html.theme-dark .modal-close-x {
  color: var(--platinum);
}
html.theme-dark .modal-btn-close {
  background: var(--platinum);
  color: var(--azure);
}
html.theme-dark .modal-btn-close:hover {
  background: #fff;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .nav-links {
    gap: clamp(0.5rem, 1.2vw, 1.25rem);
  }

  .nav-links a,
  .nav-links button {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .k-stats-wrap {
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .k-stats-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.35rem 0 0.75rem;
  }

  .k-stat-div {
    display: none;
  }

  .k-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.28);
    box-sizing: border-box;
  }

  .k-stat:last-of-type {
    border-bottom: none;
  }

  .k-stat-val {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .k-stat-lbl {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 0.65rem;
  }

  .k-stat-core {
    position: relative;
  }

  .k-stat-plus {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0.06em;
  }

  .k-stat-fiscal-word {
    position: relative;
  }

  .k-stat-fiscal-check {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.12em;
    vertical-align: 0;
  }
}

@media (max-width: 480px) {
  .k-hero-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .k-hero-cta .k-btn-teal,
  .k-hero-cta .k-btn-outline-gold {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .cta-actions .btn-azure,
  .cta-actions .nav-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .k-cta-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .k-cta-row .k-btn-gold-fill,
  .k-cta-row .k-btn-white-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .k-teal,
  .k-why,
  .k-cta-bottom {
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
  }

  .k-feat-title {
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1023px) {
  #page-home > .hero {
    padding-top: max(7.5rem, calc(1.5rem + env(safe-area-inset-top, 0px)));
    padding-bottom: var(--section-py);
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
  }

  #page-home > .nosotros,
  #page-home > .koan-band,
  #page-home > .live-demo,
  #page-home > .why,
  #page-home > .cta-s {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
  }

  #page-home > footer {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    padding-left: max(var(--section-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-px), env(safe-area-inset-right, 0px));
  }
}