:root {
  --ink: #07372f;
  --ink-deep: #032c26;
  --mint: #7ff0d6;
  --mint-bright: #8bf6df;
  --mint-pale: #d9f8f3;
  --paper: #effcf9;
  --white: #ffffff;
  --line: rgba(7, 55, 47, 0.17);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    Pretendard,
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body,
button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 7px 18px 0;
}

.nav-shell {
  width: min(900px, calc(100% - 24px));
  min-height: 48px;
  margin: 0 auto;
  padding: 6px 8px 6px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(2, 34, 29, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand strong {
  font-weight: 750;
}

.brand-symbol {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
}

.brand-symbol i {
  position: absolute;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 70% 40% 70% 40%;
  background: var(--ink);
  transform: rotate(45deg);
}

.brand-symbol i:first-child {
  left: 1px;
}

.brand-symbol i:last-child {
  right: 1px;
  transform: rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.main-nav a,
.nav-actions a {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 1px;
  background: var(--ink);
  transition:
    right 0.2s ease,
    left 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
  left: 0;
}

.nav-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .plain-link {
  max-width: 95px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plain-link {
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.plain-link:hover {
  opacity: 1;
}

.login-link {
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--mint);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.login-link:hover {
  background: var(--mint-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.dark-section {
  color: var(--white);
  background: var(--ink-deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: var(--ink-deep);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1.015);
  filter: saturate(0.92) contrast(1.03) brightness(0.85);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 30, 25, 0.2) 0%,
      rgba(0, 40, 33, 0.12) 36%,
      rgba(0, 36, 30, 0.36) 72%,
      rgba(0, 32, 27, 0.58) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 32, 27, 0.22) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 32, 27, 0.22) 100%
    );
}

.hero-glow {
  position: absolute;
  bottom: -260px;
  left: 50%;
  z-index: -2;
  width: 760px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(62, 244, 204, 0.2),
    rgba(62, 244, 204, 0.05) 43%,
    transparent 72%
  );
  filter: blur(34px);
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 36px));
  padding: 105px 0 65px;
  text-align: center;
}

.hero-dot {
  width: 48px;
  height: 54px;
  display: block;
  margin: 0 auto 29px;
  border-radius: 48% 52% 58% 42%;
  background: var(--mint-bright);
  box-shadow: 0 0 45px rgba(139, 246, 223, 0.17);
  transform: rotate(8deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 40px rgba(0, 22, 18, 0.27);
}

.hero-copy {
  max-width: 540px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.65;
  text-shadow: 0 3px 18px rgba(0, 20, 17, 0.32);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.button {
  min-width: 150px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--mint-bright);
  box-shadow: 0 12px 30px rgba(60, 237, 199, 0.14);
}

.button-primary:hover {
  background: #a0f9e6;
}

.button-outline {
  border: 1px solid rgba(139, 246, 223, 0.5);
  color: var(--mint-bright);
  background: rgba(0, 45, 38, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--mint-bright);
  background: rgba(127, 240, 214, 0.08);
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 4;
  width: 30px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint-bright);
  animation: scrollMove 1.8s ease-in-out infinite;
}

.section-inner {
  width: min(1030px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-section {
  padding: 110px 0 120px;
  background: var(--mint-pale);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 150px;
  align-items: start;
}

.intro-title p {
  margin: 0 0 25px;
  font-size: 13px;
  opacity: 0.68;
}

.intro-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 9vw, 135px);
  line-height: 0.68;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.intro-title em {
  display: block;
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
}

.feature-list article {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
}

.feature-list h3 {
  margin: 0;
  font-size: 18px;
}

.feature-list p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.66;
}

.stack-section {
  padding: 98px 0 94px;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
}

.section-heading p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.stat-board {
  margin-top: 50px;
  padding: 34px 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(127, 240, 214, 0.28);
  border-radius: 14px;
}

.stat-item {
  min-width: 0;
  padding: 0 26px;
  text-align: center;
  border-right: 1px solid rgba(127, 240, 214, 0.22);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item span {
  display: block;
  color: var(--mint);
  font-size: 13px;
}

.stat-item strong {
  display: block;
  margin-top: 8px;
  overflow: hidden;
  font-size: clamp(21px, 2.2vw, 35px);
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-section {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4fffd;
}

.rings {
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(7, 55, 47, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px transparent,
    0 0 0 81px rgba(7, 55, 47, 0.08),
    0 0 0 160px transparent,
    0 0 0 161px rgba(7, 55, 47, 0.07),
    0 0 0 240px transparent,
    0 0 0 241px rgba(7, 55, 47, 0.06);
}

.community-copy {
  position: relative;
  z-index: 1;
  padding: 30px;
  text-align: center;
}

.community-copy p {
  margin: 0 0 23px;
  font-size: 12px;
  opacity: 0.66;
}

.community-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 78px);
  font-weight: 500;
}

.statement-section {
  padding: 115px 0;
  background: var(--mint-pale);
}

.statement-inner {
  text-align: center;
}

.statement-inner p {
  margin: 0;
  color: rgba(7, 55, 47, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.statement-inner strong {
  color: var(--ink);
  font-weight: 500;
}

.text-link {
  margin-top: 44px;
  padding-bottom: 5px;
  display: inline-flex;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.58;
}

.visual-section {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: var(--mint-pale);
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--mint);
}

.visual-orb-large {
  top: 110px;
  left: calc(50% - 430px);
  width: 440px;
  height: 440px;
}

.visual-orb-medium {
  top: 135px;
  left: calc(50% - 20px);
  width: 390px;
  height: 390px;
}

.visual-orb-small {
  top: 480px;
  left: calc(50% + 430px);
  width: 48px;
  height: 48px;
}

.site-footer {
  padding: 55px 0 35px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

.footer-inner {
  width: min(1030px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-links {
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links strong {
  color: var(--white);
  font-size: 12px;
}

.footer-links a {
  width: fit-content;
  font-size: 11px;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom strong {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.footer-bottom p {
  margin: 12px 0 0;
  font-size: 10px;
  opacity: 0.55;
}

@keyframes scrollMove {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-5px);
  }

  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    display: grid;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .nav-shell.menu-open {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .nav-shell.menu-open .main-nav,
  .nav-shell.menu-open .nav-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 8px 0;
  }

  .nav-shell.menu-open .main-nav {
    flex-wrap: wrap;
    gap: 10px 25px;
  }

  .nav-shell.menu-open .nav-actions {
    padding-top: 0;
  }

  .nav-shell.menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-shell.menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .split-layout {
    gap: 60px;
  }

  .stat-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(127, 240, 214, 0.22);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 4px;
  }

  .nav-shell {
    width: calc(100% - 12px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-dot {
    width: 38px;
    height: 42px;
    margin-bottom: 24px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 56px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .button {
    width: min(260px, 100%);
  }

  .desktop-only {
    display: none;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .intro-section {
    padding: 80px 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .intro-title h2 {
    font-size: 90px;
  }

  .intro-title em {
    font-size: 45px;
  }

  .stack-section {
    padding: 78px 0;
  }

  .stat-board {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 18px 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(127, 240, 214, 0.22);
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(127, 240, 214, 0.22);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .community-section {
    min-height: 400px;
  }

  .rings {
    width: 390px;
    height: 390px;
    box-shadow:
      0 0 0 45px transparent,
      0 0 0 46px rgba(7, 55, 47, 0.08),
      0 0 0 90px transparent,
      0 0 0 91px rgba(7, 55, 47, 0.07);
  }

  .community-copy h2 {
    font-size: 50px;
  }

  .statement-section {
    padding: 90px 0;
  }

  .statement-inner p {
    font-size: 40px;
  }

  .visual-section {
    height: 450px;
  }

  .visual-orb-large {
    top: 90px;
    left: -25px;
    width: 250px;
    height: 250px;
  }

  .visual-orb-medium {
    top: 120px;
    left: 48%;
    width: 220px;
    height: 220px;
  }

  .visual-orb-small {
    top: 355px;
    right: 25px;
    left: auto;
    width: 34px;
    height: 34px;
  }

  .footer-links {
    gap: 30px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 13px;
  }

  .main-nav {
    gap: 9px 18px;
  }

  .main-nav a,
  .nav-actions a {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    max-width: 315px;
  }

  .intro-title h2 {
    font-size: 76px;
  }

  .intro-title em {
    font-size: 39px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .statement-inner p {
    font-size: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.brand strong {
  font-weight: 500;
}
.brand strong {
  display: inline-flex;
  align-items: baseline;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.brand-hyper {
  display: inline-block;
  font-weight: 300;
  font-style: normal;
}

.brand-liquid {
  display: inline-block;
  font-weight: 300;
  font-style: normal;
  transform: skewX(-12deg);
  transform-origin: center bottom;
  margin-left: 1px;
}
.guest-login-link {
  padding: 9px 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  opacity: 0.68;
  transition: opacity 0.2s ease;
}

.guest-login-link:hover {
  opacity: 1;
}

.signup-link {
  padding: 9px 17px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.signup-link:hover {
  background: var(--mint-bright);
  transform: translateY(-1px);
}
.hero-dot {
  position: relative;
  width: 62px;
  height: 46px;
  display: block;
  margin: 0 auto 29px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  animation: heroLogoFloat 4.8s ease-in-out infinite;
}

.hero-dot::before,
.hero-dot::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 31px;
  height: 27px;
  background: var(--mint-bright);
  box-shadow: 0 0 28px rgba(139, 246, 223, 0.2);
  animation: heroLogoSquish 3.6s ease-in-out infinite;
}

.hero-dot::before {
  left: 3px;
  border-radius: 68% 38% 62% 42%;
  transform: rotate(38deg);
  transform-origin: right center;
}

.hero-dot::after {
  right: 3px;
  border-radius: 38% 68% 42% 62%;
  transform: rotate(-38deg);
  transform-origin: left center;
  animation-delay: -0.18s;
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }

  25% {
    transform: translate3d(4px, -3px, 0) rotate(3deg) scale(1.03);
  }

  50% {
    transform: translate3d(-3px, 2px, 0) rotate(-1deg) scale(0.96);
  }

  75% {
    transform: translate3d(2px, -2px, 0) rotate(2deg) scale(1.02);
  }
}

@keyframes heroLogoSquish {
  0%,
  100% {
    width: 31px;
    height: 27px;
    border-radius: 68% 38% 62% 42%;
  }

  20% {
    width: 27px;
    height: 31px;
    border-radius: 55% 45% 70% 30%;
  }

  42% {
    width: 34px;
    height: 24px;
    border-radius: 75% 32% 48% 58%;
  }

  63% {
    width: 29px;
    height: 29px;
    border-radius: 42% 67% 55% 38%;
  }

  82% {
    width: 33px;
    height: 25px;
    border-radius: 62% 41% 68% 35%;
  }
}

@media (max-width: 640px) {
  .hero-dot {
    width: 54px;
    height: 40px;
    margin-bottom: 24px;
  }

  .hero-dot::before,
  .hero-dot::after {
    top: 9px;
    width: 27px;
    height: 23px;
  }
}
.statement-subcopy {
  margin-top: 34px;
  color: rgba(7, 55, 47, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.statement-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.statement-actions .button {
  min-width: 172px;
  height: 44px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: var(--mint-bright);
  box-shadow: none;
}

.statement-actions .button:hover {
  background: #a0f9e6;
  transform: translateY(-2px);
}

.statement-section {
  padding: 120px 0 128px;
}

.statement-inner {
  max-width: 980px;
}

.statement-inner p {
  font-size: clamp(43px, 4.8vw, 66px);
  line-height: 1.06;
}

@media (max-width: 640px) {
  .statement-section {
    padding: 82px 0 88px;
  }

  .statement-inner p {
    font-size: 34px;
    line-height: 1.08;
  }

  .statement-subcopy {
    margin-top: 26px;
    font-size: 12px;
  }

  .statement-actions {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .statement-actions .button {
    width: min(260px, 100%);
  }
}
.intro-title h2 {
  font-size: clamp(82px, 9vw, 135px);
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.intro-title em {
  display: block;
  margin-top: 42px;
  font-size: 54px;
  line-height: 1;
}

@media (max-width: 640px) {
  .intro-title h2 {
    font-size: 90px;
    line-height: 0.82;
  }

  .intro-title em {
    margin-top: 38px;
    font-size: 45px;
  }
}

@media (max-width: 420px) {
  .intro-title h2 {
    font-size: 76px;
    line-height: 0.84;
  }

  .intro-title em {
    margin-top: 34px;
    font-size: 39px;
  }
}
.stat-board {
  grid-template-columns: 0.9fr 1.3fr 0.9fr 1.5fr;
  padding: 34px 18px;
}

.stat-item {
  padding: 0 18px;
}

.stat-item strong {
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.1;
}

.stat-item span {
  font-size: 13px;
}

@media (max-width: 860px) {
  .stat-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item strong {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .stat-board {
    grid-template-columns: 1fr;
  }

  .stat-item strong {
    font-size: 28px;
    white-space: normal;
  }
}
.intro-title {
  position: relative;
  display: block;
  overflow: visible;
  text-align: left;
}

.intro-title::before,
.intro-title::after,
.intro-title h2::before,
.intro-title h2::after,
.intro-title em::before,
.intro-title em::after {
  content: none !important;
  display: none !important;
}

.intro-title p {
  margin: 0 0 28px;
  color: rgba(7, 55, 47, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.intro-title h2 {
  margin: 0 !important;
  padding: 0;
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 8.5vw, 132px);
  font-weight: 500;
  font-style: normal;
  line-height: 0.88 !important;
  letter-spacing: -0.065em;
  text-decoration: none !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
}

.intro-title em {
  margin: 44px 0 0 !important;
  padding: 0;
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.2vw, 62px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.035em;
  text-decoration: none !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
}

@media (max-width: 640px) {
  .intro-title h2 {
    font-size: 82px;
    line-height: 0.88 !important;
  }

  .intro-title em {
    margin-top: 36px !important;
    font-size: 44px;
  }
}

@media (max-width: 420px) {
  .intro-title h2 {
    font-size: 70px;
  }

  .intro-title em {
    margin-top: 32px !important;
    font-size: 39px;
  }
}
.intro-title *,
.intro-title *::before,
.intro-title *::after {
  box-shadow: none !important;
  border-image: none !important;
}

.intro-title::before,
.intro-title::after,
.intro-title h2::before,
.intro-title h2::after,
.intro-title em::before,
.intro-title em::after,
.intro-title span::before,
.intro-title span::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.intro-title h2,
.intro-title em {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
