@charset "UTF-8";
:root {
  --bone: #f6f2e9;
  --cream: #ece5d6;
  --sand: #e2d9c6;
  --paper: #fffdf8;
  --ink: #15201a;
  --ink-soft: #43504a;
  --ink-mute: #6c7872;
  --forest: #0f2a1e;
  --forest-2: #16382a;
  --forest-3: #1d4634;
  --brand: #3db54a;
  --brand-d: #2f9a3c;
  --lime: #9bd45c;
  --navy: #0c1a2b;
  --navy-2: #11243a;
  --close-red: #e5484d;
  --on-dark: #eaf0e8;
  --on-dark-soft: #a9b8ac;
  --line: rgba(21, 32, 26, 0.12);
  --line-2: rgba(21, 32, 26, 0.08);
  --line-light:rgba(246, 242, 233, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --maxw-nav: 1320px;
  --topbar-h: 42px;
  --header-h: 92px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  position: relative;
  font-family: "Stack Sans Text", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 560px) {
  .wrap {
    padding-inline: 20px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-d);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.eyebrow--light {
  color: var(--lime);
}
.eyebrow--light::before {
  background: var(--lime);
}

.section-title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--brand-d);
}

.lede {
  margin-top: 20px;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.lede--center {
  margin-inline: auto;
  text-align: center;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head--start {
  text-align: left;
  margin-inline: 0;
}

.btn {
  --pad: 15px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--sm {
  --pad: 10px 18px;
  font-size: 0.85rem;
}
.btn--lg {
  --pad: 18px 36px;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}
.btn--brand {
  background: var(--brand);
  color: #06180e;
  box-shadow: 0 12px 28px -12px rgba(61, 181, 74, 0.7);
}
.btn--brand:hover {
  background: var(--lime);
}
.btn--dark {
  background: var(--forest);
  color: var(--bone);
}
.btn--dark:hover {
  background: var(--forest-2);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
}
.btn--ghost-light {
  border-color: var(--line-light);
  color: var(--bone);
}
.btn--ghost-light:hover {
  border-color: var(--bone);
  background: rgba(255, 255, 255, 0.06);
}
.btn svg {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  stroke-width: 1.9;
  transition: transform 0.3s var(--ease);
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-d);
}
.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after {
  transform: translateX(5px);
}

.topbar {
  background: var(--navy-2);
  color: rgba(246, 242, 233, 0.78);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
  max-width: var(--maxw-nav);
}
.topbar__contact {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
}
.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__contact a:hover {
  color: var(--lime);
}
.topbar__contact svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
  color: var(--brand);
}
@media (max-width: 820px) {
  .topbar__note {
    display: none;
  }
}
@media (max-width: 560px) {
  .topbar__note {
    display: none;
  }
  .topbar__contact {
    gap: 16px;
    font-size: 0.76rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  max-width: var(--maxw-nav);
}
.site-header.is-top {
  box-shadow: none;
}
.site-header.is-stuck {
  border-color: var(--line-light);
  box-shadow: 0 14px 34px -22px rgba(0, 0, 0, 0.75);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 42px;
  width: auto;
}
@media (max-width: 560px) {
  .brand img {
    height: 34px;
  }
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.93rem;
  font-weight: 500;
}
.nav a {
  position: relative;
  color: rgba(246, 242, 233, 0.82);
  transition: color 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s var(--ease);
}
.nav a:hover {
  color: #fff;
}
.nav a:hover::after {
  width: 100%;
}
.nav a.is-current {
  color: #fff;
}
.nav a.is-current::after {
  width: 100%;
}
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: var(--drawer-top, var(--header-h));
    right: 0;
    bottom: 0;
    z-index: 2;
    width: min(330px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 30px 32px;
    background: var(--navy);
    border-left: 1px solid var(--line-light);
    box-shadow: -30px 0 70px -34px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.42s var(--ease), visibility 0s linear 0.42s;
  }
  .nav a {
    color: var(--on-dark);
    padding: 17px 2px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-light);
  }
  .nav a::after {
    display: none;
  }
  .nav a:hover {
    color: #fff;
  }
  .nav a.is-current {
    color: #fff;
    font-weight: 600;
  }
  .nav a:last-child {
    border-bottom: 0;
  }
}

.callpill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #06180e;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.callpill:hover {
  background: var(--lime);
}
.callpill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06180e;
  box-shadow: 0 0 0 0 rgba(6, 24, 14, 0.5);
  animation: pulse 2s infinite;
}
@media (max-width: 820px) {
  .callpill {
    display: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 24, 14, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(6, 24, 14, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 24, 14, 0);
  }
}
.navtoggle {
  display: none;
  position: relative;
  z-index: 3;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.navtoggle span {
  width: 18px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.navtoggle.is-open {
  border-color: var(--close-red);
  background: rgba(229, 72, 77, 0.12);
}
.navtoggle.is-open span {
  background: var(--close-red);
}
.navtoggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navtoggle.is-open span:nth-child(2) {
  opacity: 0;
}
.navtoggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1080px) {
  .navtoggle {
    display: flex;
  }
}

@media (min-width: 1081px) {
  .header-cta {
    display: none;
  }
}
@media (max-width: 1080px) {
  .header-cta {
    --pad: 8px 14px;
    font-size: 0.8rem;
  }
}
@media (max-width: 560px) {
  .header-cta {
    --pad: 7px 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 1080px) {
  .header-login {
    display: none;
  }
}

@media (min-width: 1081px) {
  .nav__login {
    display: none;
  }
}
@media (max-width: 1080px) {
  .nav__login {
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .nav__login svg {
    width: 1.1em;
    height: 1.1em;
    stroke-width: 1.9;
  }
}

@media (max-width: 1080px) {
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.42s var(--ease), visibility 0s;
  }
}

.nav-backdrop {
  position: fixed;
  top: var(--drawer-top, var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(6, 12, 20, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.42s var(--ease), visibility 0s linear 0.42s;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.42s var(--ease), visibility 0s;
}
@media (min-width: 1081px) {
  .nav-backdrop {
    display: none;
  }
}

html.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: calc(100dvh - var(--topbar-h) - var(--header-h));
  background: var(--forest);
  color: var(--bone);
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(72px, 9vw, 120px);
  margin-top: -1px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 42, 30, 0.92) 0%, rgba(15, 42, 30, 0.74) 38%, rgba(15, 42, 30, 0.4) 66%, rgba(15, 42, 30, 0.2) 100%), linear-gradient(0deg, rgba(15, 42, 30, 0.55) 0%, transparent 38%);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 9s linear, visibility 1.1s;
}
.hero__bg-img.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-img {
    transition: opacity 0.4s linear;
    transform: none;
  }
}
.hero__topo {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(820px, 80vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  color: var(--lime);
  opacity: 0.12;
  z-index: 1;
}
.hero__topo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 820px) {
  .hero__topo {
    opacity: 0.08;
    right: -25%;
  }
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(61, 181, 74, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}
.hero__grid {
  position: relative;
  z-index: 2;
}
.hero__badge {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(15, 42, 30, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-light);
  color: var(--bone);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero__badge img {
  width: 16px;
  height: 16px;
  display: block;
}
@media (max-width: 820px) {
  .hero__badge {
    display: none;
  }
}
.hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 3px;
  background: rgba(246, 242, 233, 0.12);
}
.hero__progress i {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
}

.herox {
  position: relative;
  max-width: 760px;
}
.herox__viewport {
  display: grid;
  align-items: start;
}
.herox__controls {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 560px) {
  .herox__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.herox__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.herox__nav {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
@media (max-width: 560px) {
  .herox__nav {
    bottom: 22px;
  }
}
.herox__arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(246, 242, 233, 0.06);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.herox__arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.herox__arrow:hover {
  background: rgba(246, 242, 233, 0.14);
  border-color: var(--bone);
}
.herox__arrow:active {
  transform: scale(0.94);
}
.herox__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(246, 242, 233, 0.18);
  cursor: pointer;
  transition: width 0.4s var(--ease), background 0.3s, border-color 0.3s;
}
.herox__dot:hover {
  background: rgba(246, 242, 233, 0.45);
  border-color: var(--bone);
}
.herox__dot.is-active {
  width: 30px;
  background: var(--lime);
  border-color: var(--lime);
}

.heroslide {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.heroslide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.heroslide__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(3rem, 5.6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  font-weight: 600;
}
.heroslide__title em {
  font-style: italic;
  color: var(--lime);
}
.heroslide__lead {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 1.16rem;
  color: rgba(246, 242, 233, 0.85);
}
.heroslide__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.heroline {
  padding-block: 0.1em;
}

.js .heroslide__title,
.js .heroslide__lead,
.js .heroslide__cta {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .js .heroslide__title,
  .js .heroslide__lead,
  .js .heroslide__cta {
    opacity: 1;
  }
}
.about {
  padding: clamp(80px, 10vw, 130px) 0 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about__intro .btn {
  margin-top: 30px;
}

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

.pillar {
  position: relative;
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -28px rgba(15, 42, 30, 0.45);
}
.pillar__tag {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--brand-d);
}
.pillar p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.stats {
  list-style: none;
  margin: clamp(56px, 7vw, 88px) 0 0;
  padding: clamp(38px, 4.5vw, 54px) 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 820px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(34px, 6vw, 48px) 22px;
  }
}

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 clamp(20px, 2.6vw, 38px);
}
.stat:first-child {
  padding-left: 0;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}
@media (max-width: 820px) {
  .stat, .stat:first-child {
    padding: 0;
  }
  .stat + .stat::before {
    display: none;
  }
  .stat {
    align-items: center;
    text-align: center;
  }
}
.stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
  border-radius: 12px;
  color: var(--brand-d);
  background: rgba(61, 181, 74, 0.1);
  transition: transform 0.45s var(--ease), background 0.45s;
}
.stat__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}
.stat__num {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.8rem, 4.8vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  letter-spacing: -0.022em;
  font-variant-numeric: tabular-nums;
  color: var(--forest);
}
.stat__label {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat:hover .stat__icon {
  transform: translateY(-3px);
  background: rgba(61, 181, 74, 0.16);
}

.services {
  padding: clamp(80px, 10vw, 130px) 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}
@media (max-width: 820px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.bento__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.bento__cell > * {
  position: relative;
  z-index: 1;
}
.bento__cell:nth-child(2), .bento__cell:nth-child(5), .bento__cell:nth-child(6) {
  grid-column: span 2;
}
@media (max-width: 560px) {
  .bento__cell:nth-child(2), .bento__cell:nth-child(5), .bento__cell:nth-child(6) {
    grid-column: auto;
  }
}
.bento__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -34px rgba(15, 42, 30, 0.55);
  border-color: transparent;
}
.bento__cell:hover::before {
  transform: translateY(0);
}
.bento__cell:hover .bento__no {
  color: var(--lime);
}
.bento__cell:hover .bento__icon {
  color: var(--lime);
  background: rgba(155, 212, 92, 0.16);
}
.bento__cell:hover .bento__text h3 {
  color: var(--bone);
}
.bento__cell:hover .bento__text p {
  color: var(--on-dark-soft);
}

.bento__no {
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--brand-d);
  transition: color 0.4s var(--ease);
}

.bento__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-top: 18px;
  border-radius: 14px;
  color: var(--brand-d);
  background: rgba(61, 181, 74, 0.1);
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}
.bento__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.bento__text {
  margin-top: 20px;
}
.bento__text h3 {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.bento__text p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  transition: color 0.4s var(--ease);
}

.bento__cell--feature {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-2) 100%);
  border-color: var(--forest-3);
  color: var(--on-dark);
}
@media (max-width: 820px) {
  .bento__cell--feature {
    grid-row: span 1;
  }
}
@media (max-width: 560px) {
  .bento__cell--feature {
    grid-column: auto;
    grid-row: auto;
  }
}
.bento__cell--feature::before {
  display: none;
}
.bento__cell--feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 60px -34px rgba(15, 42, 30, 0.7);
  border-color: var(--forest-3);
}
.bento__cell--feature .bento__no {
  color: var(--lime);
}
.bento__cell--feature .bento__icon {
  color: var(--lime);
  background: rgba(155, 212, 92, 0.14);
}
.bento__cell--feature .bento__text h3 {
  color: var(--bone);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}
.bento__cell--feature .bento__text p {
  color: var(--on-dark-soft);
  max-width: 44ch;
}

.bento__topo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66%;
  height: 68%;
  z-index: 0;
  color: var(--lime);
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(125% 125% at 100% 100%, #000 30%, transparent 72%);
  mask-image: radial-gradient(125% 125% at 100% 100%, #000 30%, transparent 72%);
}
.bento__topo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bento__facets {
  list-style: none;
  padding: 26px 0 0;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bento__facets li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(246, 242, 233, 0.06);
  color: var(--on-dark);
  font-size: 0.8rem;
  font-weight: 500;
}
.bento__facets li svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
  color: var(--lime);
}

.features {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(40px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type {
  border-top: none;
  padding-top: clamp(8px, 1vw, 16px);
}
.feature__media {
  position: relative;
  margin: 0;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(255, 253, 248, 0.7) inset, 0 30px 60px -34px rgba(15, 42, 30, 0.55);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.feature__media::before, .feature__media::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}
.feature__media::before {
  top: 19px;
  left: 19px;
  border-top: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
}
.feature__media::after {
  right: 19px;
  bottom: 19px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}
.feature__media:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 0 rgba(255, 253, 248, 0.7) inset, 0 42px 72px -34px rgba(15, 42, 30, 0.62);
}
.feature__media:hover .feature__frame img,
.feature__media:hover > img {
  transform: scale(1.045);
}
.feature__media > img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 1.1s var(--ease);
}
.feature__frame {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sand);
}
.feature__frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.feature__no {
  position: absolute;
  bottom: -18px;
  left: -16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 66px;
  padding: 0 16px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 0.98;
  letter-spacing: -0.015em;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  background: var(--forest);
  border: 1px solid var(--forest-3);
  border-radius: 16px;
  box-shadow: 0 16px 32px -16px rgba(15, 42, 30, 0.85);
}
.feature__body h3 {
  margin-top: 14px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.feature__body > p {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--ink-soft);
}
.feature--rev .feature__media {
  order: 2;
}
.feature--rev .feature__body {
  order: 1;
}
.feature--rev .feature__no {
  left: auto;
  right: -16px;
}
@media (max-width: 820px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 0;
  }
  .feature .feature__media, .feature--rev .feature__media {
    order: 0;
  }
  .feature .feature__body, .feature--rev .feature__body {
    order: 1;
  }
  .feature .feature__no, .feature--rev .feature__no {
    left: -10px;
    right: auto;
    min-width: 56px;
    height: 56px;
    font-size: 1.55rem;
  }
}

.ticks {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  display: grid;
  gap: 10px;
  max-width: 64ch;
}
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--brand-d);
  border-bottom: 2px solid var(--brand-d);
  transform: rotate(-45deg);
}

.contact {
  padding: clamp(80px, 10vw, 130px) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 820px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact__details {
  list-style: none;
  padding: 0;
  margin-top: clamp(32px, 4vw, 44px);
  display: grid;
  gap: 14px;
}
.contact__details li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact__details li:hover {
  border-color: rgba(61, 181, 74, 0.45);
  transform: translateX(4px);
  box-shadow: 0 20px 34px -28px rgba(15, 42, 30, 0.55);
}
.contact__details a {
  color: var(--ink);
  transition: color 0.25s;
}
.contact__details a:hover {
  color: var(--brand-d);
}
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(61, 181, 74, 0.12);
  color: var(--brand-d);
  flex-shrink: 0;
}
.contact__icon svg {
  width: 19px;
  height: 19px;
}
.contact__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.contact__text a, .contact__text span {
  overflow-wrap: anywhere;
}
.contact__sep {
  color: var(--ink-mute);
  margin: 0 2px;
}
.contact__k {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.enquiry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 50px 80px -58px rgba(15, 42, 30, 0.7);
  transition: box-shadow 0.4s var(--ease);
}
.enquiry:focus-within {
  box-shadow: 0 56px 90px -56px rgba(15, 42, 30, 0.8);
}
.enquiry__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.field {
  display: block;
  margin-bottom: 18px;
}
.field span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input::placeholder,
.field select::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(21, 32, 26, 0.22);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(61, 181, 74, 0.18);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2343504a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}

.blog {
  padding: 0 0 clamp(80px, 10vw, 130px);
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) {
  .posts {
    grid-template-columns: 1fr;
  }
}

.post {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -36px rgba(15, 42, 30, 0.5);
}
.post:hover .post__media img {
  transform: scale(1.05);
}
.post__media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}
.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .post__media img {
    transition: none;
  }
}
.post__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -8px rgba(15, 42, 30, 0.45);
}
.post__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 30px 30px;
}
.post h3 {
  margin: 0 0 10px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
}
.post p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex: 1;
}
.post .link-arrow {
  margin-top: 18px;
}

.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--on-dark);
  background: radial-gradient(130% 90% at 88% -10%, var(--forest-3) 0%, transparent 55%), linear-gradient(180deg, var(--forest-2) 0%, var(--forest) 100%);
}
.closing__topo {
  position: absolute;
  top: -16%;
  right: -10%;
  width: min(720px, 72vw);
  aspect-ratio: 1;
  color: var(--lime);
  opacity: 0.12;
  z-index: -1;
}
.closing__topo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 820px) {
  .closing__topo {
    opacity: 0.08;
    right: -32%;
  }
}
.closing__cta {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  align-items: end;
  gap: 48px;
  padding: clamp(76px, 10vw, 132px) 0 clamp(46px, 6vw, 70px);
}
@media (max-width: 820px) {
  .closing__cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }
}
.closing__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-top: 16px;
  max-width: 15ch;
}
.closing__title em {
  font-style: italic;
  color: var(--lime);
}
.closing__sub {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--on-dark-soft);
  font-size: 1.05rem;
}
.closing__act {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 820px) {
  .closing__act {
    align-items: stretch;
  }
}
.closing__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-light) 16%, var(--line-light) 84%, transparent);
}
.closing__footer {
  padding: clamp(50px, 6vw, 74px) 0 0;
}
.closing__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
@media (max-width: 820px) {
  .closing__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}
@media (max-width: 560px) {
  .closing__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 820px) {
  .closing__brand {
    grid-column: 1/-1;
  }
}
.closing__logo {
  height: 40px;
  width: auto;
  margin-bottom: 22px;
}
.closing__brand p {
  max-width: 46ch;
  color: var(--on-dark-soft);
  font-size: 0.97rem;
}
.closing__tag {
  margin-top: 18px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--lime);
}
.closing__col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 20px;
}
.closing__col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  font-size: 0.95rem;
}
.closing__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--on-dark-soft);
}
.closing__col a:hover {
  color: var(--lime);
}
.closing__col strong {
  color: var(--on-dark);
  font-weight: 600;
}
.closing__col svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
  color: var(--lime);
}
.closing__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 22px 0 32px;
  margin-top: 6px;
  border-top: 1px solid var(--line-light);
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}
@media (max-width: 560px) {
  .closing__bar {
    flex-direction: column;
    text-align: center;
  }
}

.scrolltop {
  position: fixed;
  left: 26px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--bone);
  border: 1px solid var(--line-light);
  box-shadow: 0 14px 30px -14px rgba(15, 42, 30, 0.65);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s;
}
.scrolltop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scrolltop:hover {
  background: var(--forest-2);
  transform: translateY(-3px) scale(1);
}
.scrolltop:active {
  transform: translateY(0) scale(1);
}
.scrolltop svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
@media (max-width: 560px) {
  .scrolltop {
    left: 16px;
    bottom: 20px;
    width: 46px;
    height: 46px;
  }
}

.js [data-reveal] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
html.is-loading {
  overflow: hidden;
}

.pageloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: radial-gradient(125% 125% at 50% 36%, var(--forest-3) 0%, var(--forest-2) 40%, var(--forest) 100%);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.pageloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-light) 1px, transparent 1px), linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 44%, #000 30%, transparent 80%);
  mask-image: radial-gradient(closest-side at 50% 44%, #000 30%, transparent 80%);
  pointer-events: none;
}
.pageloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.pageloader.is-done .pageloader__logo,
.pageloader.is-done .pageloader__bar {
  animation-play-state: paused;
}

.pageloader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 24px;
  text-align: center;
}

.pageloader__logo {
  width: clamp(150px, 32vw, 208px);
  height: auto;
  animation: pageloader-breathe 2.6s ease-in-out infinite;
}

.pageloader__track {
  position: relative;
  width: clamp(150px, 46vw, 200px);
  height: 2px;
  border-radius: 999px;
  background: var(--line-light);
  overflow: hidden;
}

.pageloader__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--brand) 35%, var(--lime) 65%, transparent);
  animation: pageloader-shuttle 1.15s var(--ease) infinite;
}

@keyframes pageloader-breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes pageloader-shuttle {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(240%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pageloader__bar {
    width: 100%;
    background: var(--brand);
  }
}
.mkt-cta {
  margin-top: clamp(34px, 4.5vw, 54px);
  display: flex;
  justify-content: center;
}

.hero__copy {
  max-width: 740px;
}

.hero__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.3rem, 7.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-top: 16px;
  font-weight: 600;
}
.hero__title em {
  font-style: italic;
  color: var(--lime);
}

.hero__lead {
  margin-top: 20px;
  max-width: 48ch;
  font-size: clamp(1.02rem, 2.7vw, 1.18rem);
  color: var(--on-dark);
}

.hero__cta {
  margin-top: clamp(26px, 3.5vw, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin-top: clamp(26px, 3.5vw, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--on-dark);
}
.hero__trust svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.9;
  color: var(--lime);
}

.hero__badge-label {
  font-weight: 500;
}

.herox__nav {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 560px) {
  .herox__nav {
    left: 0;
    right: 0;
    justify-content: center;
    bottom: 20px;
  }
}

.types {
  padding: clamp(48px, 7vw, 84px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.types__caption {
  max-width: 60ch;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.18rem, 3.4vw, 1.7rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.types__caption em {
  font-style: italic;
  color: var(--brand-d);
}

.types__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .types__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.typecard {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.typecard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.typecard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 30, 0.88) 0%, rgba(15, 42, 30, 0.22) 52%, rgba(15, 42, 30, 0) 100%);
}
.typecard:hover img {
  transform: scale(1.06);
}
.typecard__label {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
}
.typecard__k {
  display: block;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--bone);
}
.typecard__sub {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--on-dark-soft);
}

.how {
  padding: clamp(64px, 9vw, 120px) 0;
}

.how__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .how__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.track {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}
.track--dev {
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-2) 100%);
  border-color: var(--forest-3);
  color: var(--on-dark);
}
.track__head {
  display: flex;
  align-items: center;
  gap: 13px;
}
.track__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(61, 181, 74, 0.1);
  color: var(--brand-d);
  flex: 0 0 auto;
}
.track__icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}
.track--dev .track__icon {
  background: rgba(155, 212, 92, 0.16);
  color: var(--lime);
}
.track__tag {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.32rem;
  color: var(--ink);
}
.track--dev .track__tag {
  color: var(--bone);
}
.track__lead {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.track--dev .track__lead {
  color: var(--on-dark-soft);
}
.track .btn {
  margin-top: auto;
  align-self: flex-start;
}

.steps {
  list-style: none;
  padding: 0;
  margin: clamp(22px, 3vw, 28px) 0 28px;
}
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 13px 0;
}
.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 47px;
  bottom: -5px;
  width: 2px;
  background: var(--line);
}
.steps h4 {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  color: var(--ink);
}
.steps p {
  margin-top: 3px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.steps__n {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #06180e;
  background: var(--brand);
}

.track--dev .steps li:not(:last-child)::before {
  background: var(--line-light);
}
.track--dev .steps h4 {
  color: var(--bone);
}
.track--dev .steps p {
  color: var(--on-dark-soft);
}
.track--dev .steps .steps__n {
  background: var(--lime);
}

.audience {
  padding: clamp(64px, 9vw, 120px) 0;
}

.audience--dev {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--on-dark);
  background: radial-gradient(120% 80% at 85% -10%, var(--forest-3) 0%, transparent 55%), linear-gradient(180deg, var(--forest-2) 0%, var(--forest) 100%);
}
.audience--dev .section-title {
  color: var(--bone);
}
.audience--dev .section-title em {
  color: var(--lime);
}
.audience--dev .lede {
  color: var(--on-dark-soft);
}
.audience--dev .eyebrow {
  color: var(--lime);
}
.audience--dev .eyebrow::before {
  background: var(--lime);
}

.benefits {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .benefits--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  padding: clamp(24px, 3vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 44px -30px rgba(15, 42, 30, 0.5);
}
.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--brand-d);
  background: rgba(61, 181, 74, 0.1);
}
.benefit__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}
.benefit h3 {
  margin-top: 18px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.24rem;
  color: var(--ink);
}
.benefit p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.audience--dev .benefit {
  background: rgba(246, 242, 233, 0.04);
  border-color: var(--line-light);
}
.audience--dev .benefit:hover {
  border-color: rgba(155, 212, 92, 0.4);
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.55);
}
.audience--dev .benefit .benefit__icon {
  color: var(--lime);
  background: rgba(155, 212, 92, 0.14);
}
.audience--dev .benefit h3 {
  color: var(--bone);
}
.audience--dev .benefit p {
  color: var(--on-dark-soft);
}

.dev-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(154px, auto);
  gap: 14px;
}
@media (max-width: 820px) {
  .dev-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .dev-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.dev-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(246, 242, 233, 0.04);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.dev-tile > * {
  position: relative;
  z-index: 1;
}
.dev-tile:hover {
  transform: translateY(-4px);
  background: rgba(246, 242, 233, 0.07);
  border-color: rgba(155, 212, 92, 0.45);
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.55);
}
.dev-tile--wide {
  grid-column: span 2;
}
@media (max-width: 560px) {
  .dev-tile--wide {
    grid-column: auto;
  }
}

.dev-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--lime);
  background: rgba(155, 212, 92, 0.14);
  transition: background 0.45s var(--ease);
}
.dev-tile__icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.dev-tile:hover .dev-tile__icon {
  background: rgba(155, 212, 92, 0.22);
}

.dev-tile__text {
  margin-top: 18px;
}
.dev-tile__text h3 {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--bone);
}
.dev-tile__text p {
  margin-top: 9px;
  color: var(--on-dark-soft);
  font-size: 0.95rem;
}

.dev-tile--anchor {
  grid-column: span 2;
  grid-row: span 2;
  background: radial-gradient(120% 120% at 12% 8%, rgba(155, 212, 92, 0.12) 0%, transparent 45%), linear-gradient(158deg, var(--forest-3) 0%, var(--forest-2) 58%, var(--forest) 100%);
  border-color: rgba(155, 212, 92, 0.28);
}
@media (max-width: 820px) {
  .dev-tile--anchor {
    grid-row: span 1;
  }
}
@media (max-width: 560px) {
  .dev-tile--anchor {
    grid-column: auto;
    grid-row: auto;
  }
}
.dev-tile--anchor:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 212, 92, 0.5);
  box-shadow: 0 40px 64px -34px rgba(0, 0, 0, 0.7);
}
.dev-tile--anchor .dev-tile__text h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}
.dev-tile--anchor .dev-tile__text p {
  color: var(--on-dark);
  max-width: 42ch;
  font-size: 1rem;
}

.dev-tile__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dev-anchor__tag {
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(155, 212, 92, 0.32);
  background: rgba(155, 212, 92, 0.08);
}

.dev-anchor__viz {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 64%;
  z-index: 0;
  color: var(--lime);
  opacity: 0.5;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 120% at 100% 100%, #000 35%, transparent 76%);
  mask-image: radial-gradient(120% 120% at 100% 100%, #000 35%, transparent 76%);
}
.dev-anchor__viz svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dev-anchor__chips {
  list-style: none;
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dev-anchor__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(246, 242, 233, 0.06);
  color: var(--on-dark);
  font-size: 0.8rem;
  font-weight: 500;
}
.dev-anchor__chips li svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
  color: var(--lime);
}

.bindex {
  display: grid;
  gap: clamp(36px, 5vw, 80px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .bindex {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}
.bindex__head .lede {
  margin-top: 18px;
  max-width: 40ch;
}
@media (min-width: 900px) {
  .bindex__head {
    position: sticky;
    top: calc(var(--header-h) + 28px);
  }
}
.bindex__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.bindex__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
  padding: clamp(22px, 2.8vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.bindex__row:hover {
  transform: translateX(6px);
}
.bindex__row:hover .bindex__icon {
  color: var(--paper);
  background: var(--brand);
  border-color: var(--brand);
}
.bindex__row:hover h3 {
  color: var(--brand-d);
}
.bindex__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  color: var(--brand-d);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: color 0.35s, background 0.35s, border-color 0.35s;
}
.bindex__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}
.bindex__text h3 {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--ink);
  transition: color 0.35s;
}
.bindex__text p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 46ch;
}

@media (prefers-reduced-motion: reduce) {
  .bindex__row:hover {
    transform: none;
  }
}
.showcase {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bone);
}

.listings {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .listings {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .listings {
    grid-template-columns: repeat(3, 1fr);
  }
}

.listing {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.listing:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -34px rgba(15, 42, 30, 0.5);
}
.listing:hover .listing__media img {
  transform: scale(1.05);
}
.listing__media {
  position: relative;
  display: block;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--cream);
}
.listing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.listing__type {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--forest-2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -8px rgba(15, 42, 30, 0.45);
}
.listing__price {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #06180e;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px -12px rgba(61, 181, 74, 0.75);
}
.listing__from {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.listing__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 24px 26px;
}
.listing__dev {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--brand-d);
}
.listing__dev svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
}
.listing h3 {
  margin-top: 10px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
}
.listing__meta {
  list-style: none;
  padding: 16px 0 0;
  margin: 14px 0 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.listing__meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.listing__meta svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
  color: var(--brand-d);
  flex-shrink: 0;
}
.listing .btn {
  margin-top: auto;
}

.lifecycle {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0;
  background: radial-gradient(120% 78% at 50% -8%, var(--forest-3) 0%, transparent 58%), linear-gradient(180deg, var(--forest) 0%, var(--forest-2) 100%);
  border-top: 1px solid var(--forest-3);
  border-bottom: 1px solid var(--forest-3);
  color: var(--on-dark);
}
.lifecycle .section-title {
  color: var(--bone);
}
.lifecycle .section-title em {
  color: var(--lime);
}
.lifecycle .lede {
  color: var(--on-dark-soft);
}
.lifecycle .eyebrow {
  color: var(--lime);
}
.lifecycle .eyebrow::before {
  background: var(--lime);
}

.lifecycle__rail {
  max-width: 940px;
  margin: clamp(40px, 5vw, 60px) auto 0;
}

.lc-start {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 58px;
}

.lc-start__side {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--on-dark);
}
.lc-start__side svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
}

.lc-start__side--dev {
  justify-self: start;
}

.lc-start__side--inv {
  justify-self: end;
}

.lc-merge {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(74%, 340px);
  height: 54px;
  overflow: visible;
}

.lc-merge__path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.lc-track {
  position: relative;
  display: grid;
  gap: clamp(40px, 5vw, 72px);
}

.lc-spine {
  position: absolute;
  left: 50%;
  top: 22px;
  bottom: 22px;
  width: 2px;
  transform: translateX(-50%);
  background: var(--line-light);
  border-radius: 2px;
  overflow: hidden;
}

.lc-spine__draw {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  background: linear-gradient(180deg, var(--brand) 0%, var(--lime) 100%);
}

.lc-act {
  position: relative;
}

.lc-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(22px, 2.8vw, 32px);
}

.lc-node__dot {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-2);
  border: 2px solid var(--brand);
  color: var(--lime);
  box-shadow: 0 0 0 6px rgba(15, 42, 30, 0.92), 0 6px 22px rgba(61, 181, 74, 0.28);
}
.lc-node__dot svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.lc-node__title {
  position: relative;
  z-index: 2;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  letter-spacing: -0.01em;
  color: var(--bone);
  background: var(--forest-2);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 7px 18px;
}

.lc-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3.4vw, 48px);
}

.lc-card {
  background: rgba(246, 242, 233, 0.045);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
}
.lc-card p {
  margin-top: 12px;
  color: var(--on-dark-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.lc-card__who {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}
.lc-card__who svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.lc-finish {
  display: flex;
  justify-content: center;
}

.lc-finish__dot {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #06180e;
  box-shadow: 0 0 0 8px rgba(15, 42, 30, 0.94), 0 10px 34px rgba(61, 181, 74, 0.42);
}
.lc-finish__dot svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.lc-close {
  text-align: center;
  margin-top: clamp(22px, 3vw, 34px);
}

.lc-close__line {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.lc-close__line em {
  font-style: italic;
  color: var(--lime);
}

.lc-close__sub {
  margin-top: 12px;
  color: var(--on-dark-soft);
  font-size: 1.02rem;
}

@media (min-width: 760px) {
  .lc-card--dev {
    text-align: right;
  }
  .lc-card--dev .lc-card__who {
    flex-direction: row-reverse;
  }
}
@media (max-width: 759px) {
  .lc-start {
    max-width: 340px;
  }
  .lc-node {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }
  .lc-spine {
    left: 21px;
  }
  .lc-pair {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 58px;
  }
  .lc-finish {
    justify-content: flex-start;
  }
  .lc-finish__dot {
    width: 42px;
    height: 42px;
  }
  .lc-finish__dot svg {
    width: 22px;
    height: 22px;
  }
}
.testimonials {
  padding: clamp(64px, 9vw, 120px) 0;
}

.tcar {
  position: relative;
}

.tcar__viewport {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 32px 70px -44px rgba(15, 42, 30, 0.5);
}

.tcar__track {
  display: flex;
  will-change: transform;
  transition: transform 0.6s var(--ease);
}

.tslide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) 1fr;
  min-height: 440px;
}
@media (max-width: 820px) {
  .tslide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.tslide__media {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.tslide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}
.tslide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 42, 30, 0.58) 100%);
  pointer-events: none;
}
@media (max-width: 820px) {
  .tslide__media {
    height: clamp(240px, 56vw, 360px);
  }
  .tslide__media img {
    object-position: 50% 22%;
  }
}

.tslide__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: rgba(15, 42, 30, 0.62);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tslide__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.tslide__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.2vw, 60px);
}

.tslide__mark {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--sand);
  margin-bottom: 10px;
}

.tslide__quote {
  margin: 0;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.32rem, 2.5vw, 1.9rem);
  line-height: 1.34;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.tslide__cite {
  position: relative;
  margin-top: clamp(20px, 2.6vw, 30px);
  padding-left: 38px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tslide__cite::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 26px;
  height: 2px;
  background: var(--brand);
}

.tslide__name {
  font-weight: 600;
  color: var(--ink);
}

.tslide__role {
  font-size: 0.9rem;
  color: var(--ink-mute);
}

.tcar__controls {
  margin-top: clamp(20px, 2.6vw, 30px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.tcar__arrows {
  display: flex;
  gap: 10px;
}

.tcar__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.tcar__arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}
.tcar__arrow:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--bone);
  transform: translateY(-2px);
}
.tcar__arrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.tcar__dots {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto;
}

.tcar__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--sand);
  transition: width 0.4s var(--ease), background 0.4s;
}
.tcar__dot:hover {
  background: var(--ink-mute);
}
.tcar__dot.is-active {
  width: 26px;
  background: var(--brand);
}
.tcar__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.tcar__count {
  font-family: "Google Sans", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  font-size: 0.95rem;
}
.tcar__count [data-tcar-cur] {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
}

.tcar__count-sep {
  margin: 0 5px;
  color: var(--sand);
}

@media (prefers-reduced-motion: reduce) {
  .tcar__track {
    transition: none;
  }
}
.trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0;
  color: var(--on-dark);
  background: radial-gradient(120% 80% at 15% -10%, var(--forest-3) 0%, transparent 55%), linear-gradient(180deg, var(--forest) 0%, var(--forest-2) 100%);
}
.trust .section-title {
  color: var(--bone);
}
.trust .section-title em {
  color: var(--lime);
}
.trust .lede {
  color: var(--on-dark-soft);
}
.trust .eyebrow {
  color: var(--lime);
}
.trust .eyebrow::before {
  background: var(--lime);
}

.trustgrid {
  display: grid;
  gap: 16px;
  margin-top: clamp(38px, 5vw, 60px);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) {
  .trustgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .trustgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-seal {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 20px;
  border: 1px solid var(--line-light);
  background: radial-gradient(120% 130% at 100% 0%, rgba(155, 212, 92, 0.12), transparent 58%), rgba(246, 242, 233, 0.03);
  grid-column: 1/-1;
}
@media (min-width: 960px) {
  .trust-seal {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
}
.trust-seal h3 {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 1.7vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 20ch;
}
.trust-seal p {
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 46ch;
}

.trust-seal__emblem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(155, 212, 92, 0.12);
  color: var(--lime);
  box-shadow: 0 0 0 1px rgba(155, 212, 92, 0.25);
}
.trust-seal__emblem svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.trust-seal__ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(155, 212, 92, 0.55);
}

.trust-seal__stamps {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.trust-seal__stamps li {
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 7px 14px;
  border: 1px solid rgba(155, 212, 92, 0.32);
  border-radius: 999px;
}

.trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(246, 242, 233, 0.03);
  transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.trust-pillar:hover {
  transform: translateY(-3px);
  background: rgba(246, 242, 233, 0.06);
  border-color: rgba(155, 212, 92, 0.4);
}
.trust-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(155, 212, 92, 0.14);
  color: var(--lime);
}
.trust-pillar__icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}
.trust-pillar h4 {
  margin: 3px 0 0;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--bone);
}
.trust-pillar p {
  margin: 0;
  font-family: "Google Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
}

@media (min-width: 620px) and (max-width: 959px) {
  .trust-pillar:last-child {
    grid-column: 1/-1;
  }
}
