:root {
  --ink-900: #0a1726;
  --ink-800: #0f2138;
  --ink-700: #16304d;
  --bone-100: #faf9f5;
  --bone-200: #f1efe8;
  --bone-300: #e6e2d6;
  --blue-600: #2e6fa3;
  --blue-500: #3f8bc4;
  --blue-300: #a9cbe3;
  --sage-600: #5b8c3e;
  --sage-500: #74a854;
  --sage-300: #c3dba8;
  --gold-500: #c99a3d;
  --gold-300: #e3c785;
  --grey-500: #7a8699;
  --grey-300: #b7bfc9;
  --surface: var(--bone-100);
  --surface-raised: #ffffff;
  --surface-dark: var(--ink-900);
  --text-primary: var(--ink-900);
  --text-secondary: #495669;
  --text-on-dark: var(--bone-100);
  --text-on-dark-muted: #9fb0c4;
  --border-hair: rgba(10, 23, 38, 0.1);
  --border-hair-dark: rgba(255, 255, 255, 0.12);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  --fs-eyebrow: 0.8125rem;
  --fs-body: 1.0625rem;
  --fs-h3: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --fs-h2: clamp(2.25rem, 1.6rem + 2.6vw, 3.5rem);
  --fs-h1: clamp(2.75rem, 1.6rem + 4.8vw, 5.5rem);
  --fs-stat: clamp(2rem, 1.4rem + 2vw, 3.25rem);
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.875rem;
  --sp-4: 1.25rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6.5rem;
  --sp-9: 9rem;
  --container: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 3.5rem);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.6s;
  --dur-slow: 1.1s;
  --notice-offset: 44px;
}
@media (max-width: 720px) {
  :root {
    --sp-7: 3rem;
    --sp-8: 4rem;
    --sp-9: 5rem;
  }
}
@media (max-width: 380px) {
  :root {
    --container-pad: 1rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
::selection {
  background: var(--gold-300);
  color: var(--ink-900);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bone-200);
}
::-webkit-scrollbar-thumb {
  background: var(--grey-300);
  border-radius: 10px;
  border: 2px solid var(--bone-200);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--grey-500);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.eyebrow--light {
  color: var(--gold-300);
}
.h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}
.body-lg {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.body-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.mono-stat {
  font-family: var(--font-mono);
  font-size: var(--fs-stat);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.text-on-dark {
  color: var(--text-on-dark);
}
.text-on-dark-muted {
  color: var(--text-on-dark-muted);
}
.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-600);
}
em.serif-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--blue-600);
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--ink-900);
  color: var(--bone-100);
  box-shadow: 0 1px 2px rgba(10, 23, 38, 0.1);
}
.btn-primary:hover {
  background: var(--blue-600);
  box-shadow: 0 8px 24px -8px rgba(46, 111, 163, 0.5);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--ink-900);
}
.btn-gold:hover {
  background: var(--gold-300);
  box-shadow: 0 8px 24px -8px rgba(201, 154, 61, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hair);
}
.btn-ghost:hover {
  border-color: var(--ink-900);
  background: rgba(10, 23, 38, 0.03);
}
.btn-ghost-light {
  background: transparent;
  color: var(--bone-100);
  border: 1.5px solid var(--border-hair-dark);
}
.btn-ghost-light:hover {
  border-color: var(--bone-100);
  background: rgba(255, 255, 255, 0.06);
}
.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn:hover .btn-icon {
  transform: translateX(3px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-hair);
  color: var(--text-secondary);
}
.card {
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hair);
}
.section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.section--tight {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}
.section--dark {
  background: var(--ink-900);
  color: var(--text-on-dark);
}
@media (max-width: 560px) {
  .section {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }
  .section--tight {
    padding-top: var(--sp-6);
    padding-bottom: var(--sp-6);
  }
}
.pulse-divider {
  position: relative;
  width: 100%;
  height: 90px;
  overflow: hidden;
}
.pulse-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.divider-path {
  stroke: var(--border-hair);
}
.hr {
  height: 1px;
  width: 100%;
  background: var(--border-hair);
  border: none;
}
.hr-dark {
  background: var(--border-hair-dark);
}
.reveal {
  opacity: 1;
}
.js-anim-ready .reveal {
  opacity: 0;
}
.js-split-line {
  overflow: hidden;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: var(--bone-100);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}
.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 6.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: transform var(--dur-fast, 0.25s) var(--ease-out, ease),
    box-shadow var(--dur-fast, 0.25s) var(--ease-out, ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.4);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: whatsapp-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float__pulse {
    animation: none;
    display: none;
  }
}
@media (max-width: 640px) {
  .whatsapp-float {
    right: 1.25rem;
    bottom: 5.5rem;
    width: 48px;
    height: 48px;
  }
  #scroll-progress-btn {
    right: 1.25rem !important;
    bottom: 1.25rem !important;
  }
}
:root {
  --wa-notify-red: #ff3b30;
  --wa-notify-red-dark: #e0281f;
}
.wa-notify-badge {
  position: fixed;
  right: 2rem;
  bottom: 6.25rem;
  width: 52px;
  height: 52px;
  pointer-events: none;
  z-index: 10000;
}
.wa-notify-badge::after {
  content: "1";
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--wa-notify-red);
  color: #fff;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
  animation: wa-badge-pop 0.4s ease-out 1.1s both, wa-badge-pulse 2s ease-in-out 1.6s infinite;
}
.wa-notify-badge.is-hidden::after {
  display: none;
}
@keyframes wa-badge-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes wa-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px #fff, 0 0 0 0 rgba(255, 59, 48, 0.55);
  }
  50% {
    box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(255, 59, 48, 0);
  }
}
.wa-notify {
  position: fixed;
  right: calc(2rem + 52px + 14px);
  bottom: calc(6.25rem - 6px);
  max-width: 230px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid var(--wa-notify-red);
  border-radius: 14px;
  padding: 0.6rem 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(255, 59, 48, 0.12);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px) scale(0.92);
  transform-origin: right center;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.wa-notify::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1.5px solid var(--wa-notify-red);
  border-bottom: 1.5px solid var(--wa-notify-red);
}
.wa-notify.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}
.wa-notify__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-notify-red);
  box-shadow: 0 0 0 rgba(255, 59, 48, 0.5);
  animation: wa-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes wa-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}
.wa-notify__text {
  margin: 0;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-900, #1a1a1a);
}
.wa-notify__text b {
  color: var(--wa-notify-red-dark);
}
.wa-notify__close {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  color: #9aa0a6;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.wa-notify__close:hover {
  background: #f2f2f2;
  color: var(--wa-notify-red);
}
@media (max-width: 640px) {
  .wa-notify-badge {
    right: 1.25rem;
    bottom: 5.5rem;
    width: 48px;
    height: 48px;
  }
  .wa-notify {
    right: 1.25rem;
    bottom: calc(5.5rem + 48px + 14px);
    left: auto;
    max-width: 200px;
    transform-origin: bottom right;
    transform: translateY(10px) scale(0.92);
  }
  .wa-notify::after {
    right: 14px;
    top: auto;
    bottom: -7px;
    transform: rotate(45deg);
    border-right: none;
    border-bottom: none;
    border-left: 1.5px solid var(--wa-notify-red);
    border-top: 1.5px solid var(--wa-notify-red);
  }
  .wa-notify.is-visible {
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-notify-badge::after,
  .wa-notify__dot {
    animation: none;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--sp-4) 0 0;
  transition: padding var(--dur-fast) var(--ease-out);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(250, 249, 245, 0.72);
  border: 1px solid rgba(10, 23, 38, 0.07);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 32px -16px rgba(10, 23, 38, 0.12);
  transition: all var(--dur-fast) var(--ease-out);
}
.nav.is-scrolled .nav__inner {
  background: rgba(250, 249, 245, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 16px 40px -16px rgba(10, 23, 38, 0.18);
}
.nav.drawer-open .nav__inner {
  background: rgba(10, 23, 38, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.nav.drawer-open .nav__brand-name {
  color: var(--bone-100);
}
.nav.drawer-open .nav__brand-tag {
  color: var(--text-on-dark-muted);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav__brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__brand-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0.1rem;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gold-500);
  transition: width var(--dur-fast) var(--ease-out);
}
.nav__links a:hover {
  color: var(--text-primary);
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}
.nav__links a.is-active {
  color: var(--text-primary);
}
.nav__cta {
  flex-shrink: 0;
}
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ink-900);
  position: relative;
  z-index: 201;
  transition: background var(--dur-fast) var(--ease-out);
}
.nav__burger span {
  position: relative;
  width: 16px;
  height: 1.5px;
  background: var(--bone-100);
  display: block;
  transition: background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--bone-100);
  transition: transform var(--dur-fast) var(--ease-out),
    top var(--dur-fast) var(--ease-out);
}
.nav__burger span::before {
  top: -5px;
}
.nav__burger span::after {
  top: 5px;
}
.nav.drawer-open .nav__burger span {
  background: transparent;
}
.nav.drawer-open .nav__burger span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav.drawer-open .nav__burger span::after {
  top: 0;
  transform: rotate(-45deg);
}
.nav__drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--sp-7) + 1.75rem + var(--notice-offset, 0px)) var(--container-pad) var(--sp-6);
  transform: translate3d(0, -120vh, 0);
  transition: transform var(--dur-med) var(--ease-in-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  pointer-events: none;
}
.nav__drawer.is-open {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.nav__drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%,
      rgba(201, 154, 61, 0.12), transparent 55%);
  pointer-events: none;
}
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav__drawer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  color: var(--bone-100);
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease-out),
    padding-left var(--dur-fast) var(--ease-out);
}
.nav__drawer-links a:hover {
  color: var(--gold-300);
  padding-left: 0.5rem;
}
.nav__drawer-links a.is-active {
  color: var(--gold-300);
}
.nav__drawer-links a.is-active::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
}
.nav__drawer-foot {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-hair-dark);
  margin-top: var(--sp-5);
  position: relative;
  z-index: 1;
}
.nav__drawer-cta {
  align-self: flex-start;
}
.nav__drawer-tagline {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  margin: 0;
}
.nav__drawer-close {
  display: none;
}
@media (max-width: 980px) {
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}
@media (max-width: 480px) {
  .nav {
    padding-top: var(--sp-3);
  }
  .nav__inner {
    padding: 0.5rem 0.5rem 0.5rem 0.9rem;
  }
  .nav__brand img {
    height: 32px;
    width: 32px;
  }
  .nav__brand-name {
    font-size: 0.92rem;
  }
}
.hero__pulse {
  position: relative;
  width: 100%;
  height: clamp(120px, 18vw, 200px);
  margin-top: var(--sp-7);
}
.hero__pulse svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero__pulse-path {
  fill: none;
  stroke: var(--ink-900);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__pulse-dot {
  fill: var(--gold-500);
}
.hero__pulse-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  fill: var(--text-secondary);
  letter-spacing: 0.04em;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--sp-6);
  border-top: 1px solid var(--border-hair);
}
.hero__stat {
  padding: var(--sp-4) var(--sp-3) 0;
  border-left: 1px solid var(--border-hair);
}
.hero__stat:first-child {
  border-left: none;
  padding-left: 0;
}
.hero__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  max-width: 16ch;
}
@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--sp-5);
  }
  .hero__stat:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}
.main-part-of-hero {
  padding-top: 2rem;
}
.hero-slideshow {
  isolation: isolate;
}
.hero-slideshow__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
  z-index: 0;
}
.hero-slideshow__img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slideshow__dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-slideshow__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background var(--dur-fast, 0.2s) ease, transform var(--dur-fast, 0.2s) ease;
}
.hero-slideshow__dots span.is-active {
  background: #ffffff;
  transform: scale(1.25);
}
