@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  --mint-pale: #e6f7f6;
  --mint: #bfe8e6;
  --sky: #dceef8;
  --page: #f7fdfd;
  --cream: #fff4e6;
  --ink: #1b4a4d;
  --ink-soft: #2f5f62;
  --heading-color: var(--ink-soft);
  --main-green: var(--ink);
  --green-light: var(--mint);
  --green-mid: #8fd4d1;
  --beige: var(--page);
  --white: #fff;
  --on-dark: var(--page);
  --padding-web: 1.88em;
  --padding-mobile: 1em;
  --section-max: 68rem;
  --line: #1b4a4d22;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

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

html,
body {
  background: var(--beige);
  color: var(--main-green);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overscroll-behavior: none;
  cursor: default;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-size: 0.96vw;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--mint);
  border-radius: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Typography */
.text-100 {
  color: var(--ink);
  font-size: 6.25em;
  font-weight: 400;
  line-height: 95%;
  letter-spacing: 0;
}

.text-60 {
  color: var(--ink);
  font-size: 3.75em;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: -0.01em;
}

.text-60.green {
  color: var(--heading-color);
}

.text-32 {
  font-size: 2em;
  font-weight: 400;
  line-height: 100%;
  color: var(--white);
}

.text-32.green {
  color: var(--main-green);
}

.text-20 {
  color: var(--main-green);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 120%;
}

.text-18-caps {
  color: var(--main-green);
  text-transform: uppercase;
  font-size: 1.13em;
  line-height: 120%;
}

.text-16-caps {
  color: var(--ink);
  text-transform: uppercase;
  font-size: 1em;
  line-height: 130%;
}

.text-16-caps.green {
  color: var(--main-green);
}

.text-14-caps {
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.9em;
  line-height: 120%;
}

.text-14-caps.green {
  color: var(--main-green);
}

.text-14-caps.dim {
  opacity: 0.6;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.88em 0.75em;
  text-decoration: none;
}

.btn-bg {
  position: absolute;
  inset: 0;
  border: 0.08em solid var(--ink);
  border-radius: 0.25em;
  pointer-events: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-bg.green {
  border-color: var(--heading-color);
}

.btn-bg.fill-white {
  background: var(--white);
  border: 0;
}

.btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.63em;
  width: 100%;
  min-width: min(12.5em, 100%);
}

.dot {
  width: 0.31em;
  height: 0.31em;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.btn:hover .btn-bg {
  background: rgba(191, 232, 230, 0.35);
}

.btn.dark:hover .btn-bg {
  background: rgba(27, 74, 77, 0.08);
}

/* Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  padding-top: calc(1em + 20px);
  pointer-events: none;
  box-sizing: border-box;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1em;
  width: 100%;
  max-width: 100%;
  padding: 0 var(--padding-web);
  pointer-events: none;
  box-sizing: border-box;
}

.nav-wrap > * {
  pointer-events: auto;
}

.logo-header {
  justify-self: start;
  width: 12.5em;
}

.logo-header img {
  width: 100%;
  height: auto;
}

.logo-header .logo-on-dark {
  display: none;
}

.logo-header .logo-on-light {
  display: block;
}

.navbar:not(.dark):not(.split) .logo-header .logo-on-dark {
  display: block;
}

.navbar:not(.dark):not(.split) .logo-header .logo-on-light {
  display: none;
}

.nav-pills {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.45em 0.7em;
  min-width: min(52em, 64vw);
  justify-content: space-evenly;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 74, 77, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(27, 74, 77, 0.06);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72em 1.05em;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86em;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-pill:hover,
.nav-pill.is-active {
  background: var(--mint);
  color: var(--ink);
}

.nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72em 1.35em;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: #163a3c;
  transform: translateY(-1px);
}

.nav-cta.is-kakao {
  background: transparent;
  border: 0.08em solid var(--ink);
  color: var(--ink);
}

.nav-cta.is-kakao:hover {
  background: var(--mint);
  border-color: var(--ink);
  color: var(--ink);
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 0.38em;
  cursor: pointer;
  background: none;
  border: 0;
  color: var(--ink);
}

.menu-icon {
  width: 0.88em;
  height: 0.88em;
  color: currentColor;
  display: flex;
}

.navbar:not(.dark):not(.split) .nav-pills {
  background: rgba(16, 42, 44, 0.42);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.navbar:not(.dark):not(.split) .nav-pill {
  color: rgba(255, 255, 255, 0.92);
}

.navbar:not(.dark):not(.split) .nav-pill:hover,
.navbar:not(.dark):not(.split) .nav-pill.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.navbar:not(.dark):not(.split) .nav-cta {
  background: #fff;
  color: var(--ink);
}

.navbar:not(.dark):not(.split) .nav-cta:hover {
  background: var(--mint);
}

.navbar:not(.dark):not(.split) .nav-cta.is-kakao {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
}

.navbar:not(.dark):not(.split) .nav-cta.is-kakao:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: #fff;
  color: var(--ink);
}

.navbar:not(.dark):not(.split) .menu-btn {
  color: var(--on-dark);
}

.navbar.dark .menu-btn {
  color: var(--main-green);
}

.navbar.split .menu-btn {
  color: var(--main-green);
}

@media (max-width: 991px) {
  .nav-pills {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .logo-header {
    width: 11em;
  }

  .nav-cta {
    padding: 0.62em 1em;
    font-size: 0.76em;
  }

  .nav-end {
    gap: 0.45em;
  }
}

/* Fullscreen menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.menu-overlay.is-open {
  display: block;
}

.menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.menu-panel {
  position: relative;
  z-index: 2;
  width: min(42em, 100%);
  height: 100vh;
  background: var(--main-green);
  padding: 1.63em 1.88em 1.88em var(--padding-web);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-top {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}

.menu-top img {
  height: 2.6em;
  width: auto;
  max-width: 14em;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  padding-top: 4.5em;
  flex: 1;
}

.menu-heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--on-dark);
  font-size: 4.2em;
  line-height: 90%;
  cursor: pointer;
}

.menu-heading .leaf {
  width: 0.5em;
  height: 0.5em;
  flex: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.menu-heading .leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-item.is-open .leaf,
.menu-heading:hover .leaf {
  opacity: 1;
}

.menu-sub {
  display: none;
  flex-direction: column;
  gap: 0.55em;
  padding: 0.75em 0 1.4em 3.4em;
}

.menu-item.is-open .menu-sub {
  display: flex;
}

.menu-sub a {
  color: var(--on-dark);
  font-size: 1.5em;
  line-height: 90%;
  opacity: 0.85;
}

.menu-sub a:hover {
  opacity: 1;
}

.menu-bottom {
  display: flex;
  justify-content: space-between;
  color: rgba(247, 253, 253, 0.75);
  text-transform: uppercase;
  font-size: 0.9em;
}

.menu-bottom a:hover {
  color: var(--beige);
}

/* Apply form */
.apply-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}

.apply-overlay.is-open {
  display: block;
}

.apply-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.apply-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52.2em, 100%);
  height: 100vh;
  background: var(--main-green);
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  color: var(--on-dark);
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
}

.apply-panel .text-16-caps,
.apply-panel .text-14-caps,
.apply-close {
  color: var(--on-dark);
}

.apply-panel .btn-bg {
  border-color: var(--on-dark);
}

.apply-overlay.is-open .apply-panel {
  transform: translateX(0);
}

.apply-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
}

.apply-head h2 {
  font-size: 2.4em;
  font-weight: 400;
  line-height: 105%;
  max-width: 16em;
}

.apply-close {
  color: var(--beige);
  text-transform: uppercase;
  font-size: 0.9em;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25em 1.5em;
  flex: 1;
}

.apply-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.apply-grid input,
.apply-grid select,
.apply-grid textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 237, 230, 0.25);
  padding: 0.55em 0;
  color: var(--beige);
  outline: none;
}

.apply-grid textarea {
  min-height: 5em;
  resize: vertical;
}

.apply-grid .full {
  grid-column: 1 / -1;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.55em;
}

.checkbox-group span {
  display: flex;
  align-items: center;
  gap: 0.55em;
  text-transform: none;
  font-size: 0.92em;
  opacity: 1;
}

.checkbox-group input {
  width: 0.95em;
  height: 0.95em;
  accent-color: var(--beige);
}

.unit-row {
  display: flex;
  align-items: center;
  gap: 0.8em;
}

.unit-row input {
  flex: 1;
}

.unit-toggle {
  display: flex;
  gap: 0.4em;
  text-transform: uppercase;
  font-size: 0.85em;
}

.submit-btn {
  margin-top: auto;
  align-self: flex-start;
  background: var(--beige);
  color: var(--main-green);
  border-radius: 0.25em;
  padding: 0.95em 1.4em;
  text-transform: uppercase;
  font-size: 0.95em;
}

.apply-note {
  opacity: 0.65;
  font-size: 0.82em;
  line-height: 140%;
  text-transform: uppercase;
}

.form-note {
  display: none;
  font-size: 1.2em;
}

.form-note.is-visible {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 56em;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #fcfefe 0%, #f5fbfb 38%, #e3f1f0 58%, #b4d8d5 78%, #6faba8 100%);
}

.hero-media,
.hero-media img {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 6.5em var(--padding-web) 4.2em;
}

.hero-heading-1 {
  align-self: start;
  margin-top: 100px;
}

.hero-heading-1 .text-100 {
  font-family: var(--font-sans);
  font-size: 5em;
  font-weight: 800;
}

.hero-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-story {
  position: relative;
}

.product-story-pin {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.plunge-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: visible;
  isolation: isolate;
}

.water-fill-canvas,
.water-front-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.water-fill-canvas {
  z-index: 1;
}

.water-front-canvas {
  z-index: 10;
}

.plunge-bottle {
  position: absolute;
  left: 50%;
  top: calc(19vh + 160px);
  z-index: 3;
  width: min(22vw, 16.5em);
  height: min(62vh, 40em);
  transform: translateX(-50%);
  will-change: transform;
}

.plunge-bottle .hero-product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: none;
  will-change: clip-path;
}

.plunge-bottle .hero-product.is-air {
  clip-path: inset(0 0 0 0);
}

.plunge-bottle .hero-product.is-wet {
  filter: brightness(0.82) saturate(0.82) hue-rotate(168deg) contrast(1.04);
  transform: none;
  clip-path: inset(100% 0 0 0);
}

.hero-product-mobile {
  display: none;
  width: min(14em, 48vw);
  height: auto;
  filter: none;
}

.tablet-img {
  width: 22em;
  max-width: 46vw;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
}

.hero-heading-2 {
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 26em;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-heading-2 .text-60 {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.12;
  word-break: keep-all;
}

.hero-copy {
  margin-top: 1.15em;
  max-width: none;
}

.hero-copy .btn {
  margin-top: 1.35em;
}

.hero-copy .btn .btn-bg {
  border-color: var(--white);
}

.hero-copy .btn .btn-inner {
  color: var(--white);
  font-weight: 700;
  transition: color 0.3s var(--ease);
}

.hero-copy .btn:hover .btn-bg {
  background: var(--white);
  border-color: var(--white);
}

.hero-copy .btn:hover .btn-inner {
  color: var(--ink);
}

@keyframes hero-text-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-heading-1,
.hero-heading-2 .text-60,
.hero-copy .ko-copy,
.hero-copy .btn {
  opacity: 0;
  animation: hero-text-enter 0.95s var(--ease) forwards;
}

.hero-heading-1 {
  animation-delay: 0.12s;
}

.hero-heading-2 .text-60 {
  animation-delay: 0.32s;
}

.hero-copy .ko-copy {
  animation-delay: 0.48s;
}

.hero-copy .btn {
  animation-delay: 0.64s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading-1,
  .hero-heading-2 .text-60,
  .hero-copy .ko-copy,
  .hero-copy .btn {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.logos-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 8.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.56em;
  background: linear-gradient(180deg, transparent, rgba(191, 232, 230, 0.45) 40%, var(--mint-pale));
}

.logos-bar img {
  height: 2.4em;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

/* Problem */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--beige);
}

.problem-media {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  min-height: 100vh;
}

.problem-media video,
.problem-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.4em 2.2em 2.8em;
  background: linear-gradient(180deg, transparent, rgba(27, 74, 77, 0.35) 40%);
}

.problem-overlay .text-60 {
  max-width: none;
  font-weight: 700;
  font-size: calc(3.75em - 5px);
  color: var(--on-dark);
}

@media (min-width: 992px) {
  .problem-overlay .text-60 {
    white-space: nowrap;
  }
}

.problem-overlay .text-16-caps {
  margin-top: 1em;
  max-width: 28em;
  opacity: 0.9;
  color: var(--on-dark);
}

.problem-copy {
  padding: 4.2em 4em 3.2em 3.2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.problem-copy .source {
  opacity: 0.55;
  font-size: 0.9em;
}

.corn-mark {
  width: 11em;
  opacity: 0.18;
  align-self: flex-end;
}

/* Capsule / better way */
.capsule {
  position: relative;
  background: radial-gradient(ellipse at 50% 42%, var(--mint-pale) 0%, var(--sky) 48%, var(--page) 100%);
  color: var(--ink);
  padding: 0 0 6em;
  overflow: hidden;
}

.capsule-scene {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 7em var(--padding-web) 4em;
}

.capsule-video,
.capsule-fallback {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(28em, 42vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.capsule-video {
  display: none;
}

.capsule-fallback {
  display: block;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.28));
}

.capsule-question {
  max-width: none;
  align-self: start;
}

.capsule-question.text-60 {
  font-size: calc((3.75em - 5px) * 0.7);
  font-weight: 700;
}

.capsule-copy {
  justify-self: end;
  align-self: end;
  max-width: 18em;
  padding-bottom: 2em;
}

.capsule-copy .text-60 {
  margin-bottom: 1.1em;
}

.capsule-copy .text-16-caps {
  opacity: 0.92;
}

.capsule-copy .btn-inner {
  opacity: 1;
}

.capsule-lead {
  white-space: nowrap;
  margin-bottom: 1.5em;
}

.capsule-lead-brand {
  display: block;
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: calc(0.28em + 10px);
  opacity: 1;
}

.capsule-tagline {
  margin: 1.4em 0 1.6em;
  font-weight: 700;
}

.feature-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25em;
  padding: 0 var(--padding-web);
  margin-top: -4em;
}

.feature-card {
  background: var(--beige);
  color: var(--main-green);
  padding: 1.5em 1.4em 1.8em;
  min-height: 16em;
}

.feature-icon {
  width: 1.15em;
  height: 1.15em;
  margin-bottom: 1.4em;
  filter: brightness(0) saturate(100%) invert(24%) sepia(24%) saturate(746%) hue-rotate(39deg);
}

.feature-card h3 {
  font-size: 1.85em;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 0.85em;
}

.feature-card p {
  text-transform: uppercase;
  font-size: 0.9em;
  line-height: 130%;
  opacity: 0.85;
}

.feature-steps {
  display: grid;
  gap: 0;
  padding: 6em var(--padding-web) 2em;
  max-width: 42em;
}

.feature-step {
  border-top: 1px solid rgba(244, 237, 230, 0.18);
  padding: 1.6em 0 1.8em;
}

.feature-step h3 {
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 0.55em;
}

.feature-step p {
  text-transform: uppercase;
  font-size: 0.95em;
  line-height: 130%;
  opacity: 0.85;
  max-width: 28em;
}

/* Numbers */
.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--beige);
}

.numbers-media {
  overflow: hidden;
  background: #111;
}

.numbers-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbers-copy {
  padding: 3.13em var(--padding-web) 3.13em 3.13em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 2.2em;
  padding-bottom: 2em;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5em;
  border-top: 1px solid var(--line);
  padding-top: 1.1em;
}

.stat strong {
  font-size: 2.4em;
  font-weight: 400;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  flex: none;
}

.stat span {
  text-transform: uppercase;
  font-size: 0.95em;
  line-height: 120%;
  text-align: right;
  max-width: 16em;
}

.stat-note {
  opacity: 0.55;
  font-size: 0.78em;
  text-transform: uppercase;
  max-width: 42em;
  line-height: 140%;
}

/* Carbon (legacy product split — kept for other pages) */
.carbon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
  padding-inline: max(0px, calc((100% - var(--section-max)) / 2));
  height: 80vh;
  min-height: 80vh;
  background: var(--cream);
}

.about-fan {
  background: linear-gradient(180deg, #f8fbfb 0%, var(--cream) 48%, #f4f1ea 100%);
  padding: max(1.2em, calc(6.5em - 200px)) max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 7em;
  text-align: center;
}

.about-fan-inner {
  max-width: 58em;
  margin-inline: auto;
}

.about-fan-badge {
  margin-inline: auto;
}

.about-fan-title {
  margin: 1.2em auto 0.9em;
  color: var(--heading-color);
  font-size: clamp(2.4em, 4.4vw, 4em);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.about-fan-title em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  color: #5a8a8c;
}

.about-fan-lede {
  max-width: 52em;
  margin: 0 auto 2.8em;
  color: var(--ink-soft);
  font-size: 1.05em;
  line-height: 1.7;
  word-break: keep-all;
}

.about-fan-lede-line {
  white-space: nowrap;
}

.about-fan-cards {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  min-height: 24em;
  margin: 0 auto 3.2em;
  max-width: 46em;
}

.about-fan-card {
  position: relative;
  width: min(15.5em, 30vw);
  height: 21em;
  border-radius: 1.5em;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(27, 74, 77, 0.14);
  background: #fff;
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  cursor: pointer;
}

.about-fan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  transition: background 0.35s var(--ease);
  pointer-events: none;
}

.about-fan-card:hover {
  box-shadow: 0 28px 56px rgba(27, 74, 77, 0.2);
  background: var(--mint-pale);
}

.about-fan-card:hover::after {
  background: rgba(191, 232, 230, 0.32);
}

.about-fan-card:hover img.is-product {
  background: linear-gradient(180deg, #d4efed 0%, #bfe8e6 100%);
}

.about-fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.about-fan-card img.is-product {
  object-fit: contain;
  object-position: center 60%;
  background: linear-gradient(180deg, #e6f7f6 0%, #d5eeed 100%);
  padding: 1.4em 1em 0.6em;
  transition: background 0.35s var(--ease), transform 0.45s var(--ease);
}

.about-fan-card.is-left {
  transform: rotate(-8deg) translate(1.1em, 0.6em);
  z-index: 1;
}

.about-fan-card.is-center {
  transform: translateY(-1.4em);
  z-index: 3;
  height: 22.5em;
  width: min(16.2em, 32vw);
}

.about-fan-card.is-right {
  transform: rotate(8deg) translate(-1.1em, 0.6em);
  z-index: 2;
}

.about-fan-card.is-left:hover {
  animation: about-fan-float-left 1.7s ease-in-out infinite;
}

.about-fan-card.is-center:hover {
  animation: about-fan-float-center 1.7s ease-in-out infinite;
}

.about-fan-card.is-right:hover {
  animation: about-fan-float-right 1.7s ease-in-out infinite;
}

@keyframes about-fan-float-left {
  0%,
  100% {
    transform: rotate(-8deg) translate(1.1em, -0.35em);
  }
  50% {
    transform: rotate(-8deg) translate(1.1em, -1.15em);
  }
}

@keyframes about-fan-float-center {
  0%,
  100% {
    transform: translateY(-2em);
  }
  50% {
    transform: translateY(-2.85em);
  }
}

@keyframes about-fan-float-right {
  0%,
  100% {
    transform: rotate(8deg) translate(-1.1em, -0.35em);
  }
  50% {
    transform: rotate(8deg) translate(-1.1em, -1.15em);
  }
}

.about-fan-chip {
  position: absolute;
  top: 0.85em;
  left: 0.85em;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.75em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.72em;
  letter-spacing: 0.06em;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.chip-dot {
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  flex: none;
}

.chip-dot.is-mint { background: #6fb8b4; }
.chip-dot.is-sky { background: #7eb4d4; }
.chip-dot.is-cream { background: #d4a574; }

.about-fan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
  padding-top: 2.2em;
  border-top: 1px solid rgba(27, 74, 77, 0.12);
  text-align: left;
}

.about-fan-stat {
  padding: 1.2em 1.1em 1.35em;
  border-radius: 1.1em;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
}

.about-fan-stat:hover {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(27, 74, 77, 0.08);
}

.about-fan-stat strong {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  font-size: 2.6em;
  line-height: 1;
  color: var(--heading-color);
  margin-bottom: 0.45em;
}

.about-fan-stat h3 {
  font-size: 1.15em;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.55em;
  word-break: keep-all;
}

.about-fan-stat h3 em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  color: #5a8a8c;
}

.about-fan-stat p {
  color: var(--ink-soft);
  font-size: 0.95em;
  line-height: 1.55;
  word-break: keep-all;
}

.about-fan-cta {
  margin: 2.6em auto 0;
  display: inline-flex;
}

.btn.dark.about-fan-cta:hover .btn-bg {
  background: var(--white);
  border-color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .about-fan-card.is-left:hover,
  .about-fan-card.is-center:hover,
  .about-fan-card.is-right:hover {
    animation: none;
  }

  .about-fan-card.is-left:hover {
    transform: rotate(-8deg) translate(1.1em, -0.6em);
  }

  .about-fan-card.is-center:hover {
    transform: translateY(-2.2em);
  }

  .about-fan-card.is-right:hover {
    transform: rotate(8deg) translate(-1.1em, -0.6em);
  }
}

@media (max-width: 991px) {
  .about-fan {
    padding: 4em var(--padding-mobile) 5em;
    text-align: center;
  }

  .about-fan-cards {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: stretch;
    gap: 1em;
    min-height: 0;
    max-width: 22em;
    margin: 0 auto 2.4em;
  }

  .about-fan-card,
  .about-fan-card.is-left,
  .about-fan-card.is-center,
  .about-fan-card.is-right {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(100%, 18em);
    height: 13.5em;
    transform: none;
    z-index: 1;
  }

  .about-fan-card.is-left:hover,
  .about-fan-card.is-center:hover,
  .about-fan-card.is-right:hover {
    animation: none;
    transform: translateY(-0.35em);
  }

  .about-fan-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-fan-lede-line {
    white-space: normal;
  }
}

.carbon-copy {
  padding: 3.4em 3em 3.4em 3.4em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.carbon-copy-top .text-60 {
  font-size: calc(3.75em * 0.8);
  font-weight: 700;
}

.carbon-copy-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4em;
}

.carbon-copy-bottom .copy-bar + .copy-bar {
  margin-top: 0.4em;
}

.copy-bar.is-strong {
  font-weight: 700;
}

.carbon-copy-bottom .tag {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.carbon-copy-bottom .tag-row {
  margin: 0.2em 0 0.4em;
}

.carbon-copy .text-16-caps.green {
  max-width: 28em;
}

.copy-bar {
  position: relative;
  padding-left: 1.15em;
  line-height: 1.75;
}

.copy-bar::before {
  content: "";
  position: absolute;
  top: 0.18em;
  bottom: 0.18em;
  left: 0;
  width: 0.2em;
  border-radius: 999px;
  background: var(--mint);
}

.carbon-media {
  min-height: 0;
  overflow: hidden;
}

.carbon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}

/* Products */
.products {
  padding: calc(6em + 100px) var(--padding-web) 0;
  background: var(--beige);
}

.school-clean-gap {
  height: calc(8em + 100px);
  background: var(--beige);
}

.products-head .text-60 {
  max-width: 12em;
  font-size: calc(3.75em * 0.8);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4em;
  margin-top: 2.4em;
  align-items: start;
}

.product-card:nth-child(2) {
  margin-top: 2.2em;
}

.product-card:nth-child(3) {
  margin-top: 4.4em;
}

.product-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-card:hover {
  z-index: 2;
}

.product-visual {
  position: relative;
  background: var(--green-light);
  border-radius: 0.4em;
  min-height: 40em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4em 1.25em 1.5em;
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.78) 12%,
    rgba(255, 255, 255, 0.28) 22%,
    transparent 34%
  );
}

.product-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1);
  filter: none;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-visual img {
  transform: scale(1.03);
}

.product-copy {
  position: relative;
  z-index: 2;
  color: var(--ink);
  max-width: 18em;
}

.product-copy h3 {
  font-size: 1.85em;
  font-weight: 700;
  line-height: 110%;
  color: var(--ink);
}

.product-copy p {
  margin-top: 0.55em;
  text-transform: uppercase;
  font-size: 0.88em;
  line-height: 130%;
  color: var(--ink);
  opacity: 0.92;
}

.product-scene {
  margin: 0.35em 0 0.7em;
  padding-left: 0.7em;
  border-left: 0.1em solid var(--ink);
  color: var(--ink);
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  word-break: keep-all;
}

.product-copy-detail {
  text-transform: none;
  word-break: keep-all;
}

.product-arrow {
  position: absolute;
  top: 0.63em;
  right: 0.63em;
  width: 3.38em;
  height: 3.38em;
  border-radius: 0.13em;
  border: 1px solid rgba(27, 74, 77, 0.28);
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 3;
}

/* Field trials */
.trials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--beige);
  border-top: 1px solid var(--line);
}

.trials-copy {
  padding: 3.13em 3.75em 3.75em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.trials-copy .lede {
  max-width: 28em;
}

.map-wrap {
  position: relative;
  padding: 3em 2em;
}

.map-wrap img.map {
  width: 100%;
}

.pin {
  position: absolute;
  width: 1.1em;
  cursor: pointer;
}

.pin-card {
  position: absolute;
  left: 1.4em;
  top: -0.4em;
  min-width: 10em;
  background: var(--green-light);
  color: var(--ink);
  padding: 0.85em 0.9em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.35s ease;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.78em;
  line-height: 130%;
}

.pin-card strong {
  font-size: 1.15em;
  font-weight: 500;
}

.pin:hover .pin-card,
.pin.is-active .pin-card {
  opacity: 1;
  transform: none;
}

.trials-cta {
  position: relative;
  overflow: hidden;
  min-height: 57.5em;
  display: flex;
  align-items: flex-end;
  padding: 0 0 3.75em 3.75em;
}

.trials-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trial-note {
  position: absolute;
  z-index: 2;
  width: 16em;
  padding: 1.15em 1.2em 1.3em;
  color: var(--main-green);
}

.trial-note.next {
  top: 7.5em;
  right: 2.2em;
  background: var(--white);
}

.trial-note.why {
  top: 18.5em;
  left: 2.4em;
  background: var(--beige);
}

.trial-note h3 {
  font-size: 1.45em;
  font-weight: 400;
  margin-bottom: 0.55em;
}

.trial-note p {
  text-transform: uppercase;
  font-size: 0.82em;
  line-height: 130%;
}

.trials-cta-inner {
  position: relative;
  z-index: 1;
  color: var(--beige);
  max-width: 16em;
}

.trials-cta-inner .text-60 {
  margin-bottom: 1.5em;
}

/* Community */
.community {
  background: var(--sky);
  min-height: 57em;
  width: 100%;
  box-sizing: border-box;
  padding: 5.31em 0 4em max(3em, calc((100% - var(--section-max)) / 2 + 3em));
  color: var(--ink);
}

.community-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: max(var(--padding-web), calc((100% - var(--section-max)) / 2));
}

.carousel-nav {
  display: flex;
  gap: 0.5em;
}

.carousel-nav button {
  width: 3.2em;
  height: 3.2em;
  background: var(--beige);
  color: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel {
  display: flex;
  gap: 1.4em;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-top: 3em;
  padding-right: max(var(--padding-web), calc((100% - var(--section-max)) / 2));
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.blog-card {
  position: relative;
  flex: 0 0 24.5em;
  height: 32em;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  min-height: 46%;
  background: var(--beige);
  color: var(--main-green);
  padding: 1.3em 1.2em 1.4em;
}

.blog-card-copy h3 {
  font-size: 1.35em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 110%;
  margin-bottom: 0.7em;
}

.blog-card-copy p {
  text-transform: uppercase;
  font-size: 0.82em;
  line-height: 130%;
  opacity: 0.85;
}

/* CTA */
.cta {
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  padding: 5.63em max(0px, calc((100% - var(--section-max)) / 2)) 0 max(3em, calc((100% - var(--section-max)) / 2 + 3em));
  display: flex;
  justify-content: space-between;
  gap: 2em;
  overflow: hidden;
}

.cta-text {
  padding-bottom: 7em;
  max-width: 32.6em;
}

.cta-text .text-60 {
  margin-bottom: 1.3em;
}

.cta-actions {
  display: flex;
  gap: 1.25em;
  margin-top: 2.2em;
}

.cta-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(42em, 46vw);
  gap: 0.2em;
}

.cta-mosaic img {
  width: 100%;
  height: 18em;
  object-fit: cover;
}

/* Footer */
.footer {
  background: #dfe8e8;
  padding: 3.75em var(--padding-web) 1.38em;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3em;
}

.footer-cols {
  display: flex;
  gap: 4.5em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85em;
}

.footer-col a {
  text-transform: uppercase;
  font-size: 0.9em;
  position: relative;
  width: fit-content;
}

.footer-col a::after,
.footer-link::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-col a:hover::after,
.footer-link:hover::after {
  width: 100%;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5em;
}

.footer-right .email {
  font-size: 1.25em;
  font-weight: 500;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 3.5em;
  padding-top: 1.2em;
}

.footer-mark {
  width: 5.8em;
}

.footer-mark img {
  width: 100%;
  height: auto;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.4em;
}

.footer-credit {
  margin-top: 1.1em;
  display: flex;
  justify-content: flex-end;
}

/* Inner pages */
.page-hero {
  min-height: 100vh;
  padding: 8em var(--padding-web) 5em;
  background: var(--mint-pale);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5em;
}

.page-hero.light {
  background: var(--beige);
  color: var(--main-green);
}

.page-hero .kicker {
  text-transform: uppercase;
  opacity: 0.7;
  font-size: 0.9em;
}

.page-hero h1 {
  font-size: 6.25em;
  font-weight: 400;
  line-height: 90%;
  max-width: 12em;
}

.page-hero .lede {
  max-width: 28em;
  font-size: 1.13em;
  line-height: 130%;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
  padding-inline: max(0px, calc((100% - var(--section-max)) / 2));
  min-height: 70vh;
  background: var(--sky);
}

.split-block .copy {
  padding: 4em 3em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2em;
}

.split-block .media img,
.split-block .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack {
  padding: 6em var(--padding-web);
  background: var(--beige);
}

.stack h2 {
  font-size: 3.75em;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 95%;
  max-width: 14em;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-top: 3em;
}

.info-card {
  border-top: 1px solid var(--line);
  padding-top: 1.2em;
}

.info-card h3 {
  font-size: 1.6em;
  font-weight: 400;
  margin-bottom: 0.6em;
}

.info-card p {
  text-transform: uppercase;
  font-size: 0.92em;
  line-height: 135%;
  opacity: 0.85;
}

.faq {
  padding: 4em var(--padding-web) 8em;
  background: var(--beige);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.3em 0;
  display: flex;
  justify-content: space-between;
  gap: 2em;
  font-size: 1.35em;
}

.faq-item .answer {
  display: none;
  padding: 0 0 1.4em;
  max-width: 46em;
  line-height: 140%;
}

.faq-item.is-open .answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 8em);
  padding-top: 8em;
  background: var(--beige);
}

.contact-details {
  padding: 2em var(--padding-web);
}

.contact-details a {
  display: block;
  font-size: 2em;
  margin-top: 0.4em;
}

.contact-form .submit-btn {
  background: var(--main-green);
  color: var(--beige);
}

.blog-list .blog-card {
  height: 28em;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-top: 2.5em;
}

.pathway {
  border: 1px solid var(--line);
  padding: 1.6em 1.4em;
}

.pathway .nutrient {
  font-size: 3.2em;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 1;
}

.pathway h3 {
  font-size: 1.4em;
  font-weight: 400;
  margin: 0.6em 0 0.5em;
}

.pathway p {
  text-transform: uppercase;
  font-size: 0.88em;
  line-height: 135%;
  opacity: 0.85;
}

.result-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-top: 2.2em;
}

.result-row strong {
  display: block;
  font-size: 3em;
  font-weight: 400;
  color: var(--heading-color);
}

.blog-list {
  padding: 10em var(--padding-web) 6em;
  background: var(--beige);
}

.blog-list h1 {
  font-size: 6.25em;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 1.2em;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5em;
}

.blog-grid .blog-card {
  flex: none;
  width: 100%;
  height: 28em;
}

.soon {
  min-height: 100vh;
  background: var(--mint-pale);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8em;
}

.soon h1 {
  font-size: 4em;
  font-weight: 400;
}

.article {
  padding: 10em var(--padding-web) 6em;
  background: var(--beige);
  max-width: 48em;
}

.article h1 {
  font-size: 3.4em;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 105%;
  margin-bottom: 1em;
}

.article p {
  font-size: 1.15em;
  line-height: 150%;
  margin-bottom: 1em;
}

@media (max-width: 991px) {
  body {
    font-size: clamp(15px, 3.85vw, 17px);
  }

  .hero-content,
  .problem,
  .capsule-scene,
  .numbers,
  .carbon,
  .product-grid,
  .trials,
  .split-block,
  .contact-grid,
  .blog-grid,
  .card-row {
    grid-template-columns: 1fr;
  }

  .carbon {
    height: auto;
  }

  .carbon-media {
    min-height: 56vh;
  }

  .carbon-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 56vh;
  }

  .product-grid {
    margin-top: 2em;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    margin-top: 2em;
  }

  .product-visual img,
  .product-visual img.bottle {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
  }

  .hero-content {
    padding-top: 7em;
    gap: 1.4em;
    padding-bottom: 3.2em;
    grid-template-rows: auto 1fr auto;
  }

  .hero-heading-2 {
    justify-self: start;
    align-self: start;
    max-width: 28em;
    border: 0;
    padding: 0;
  }

  .tablet-img {
    max-width: 70vw;
  }

  .hero-product {
    display: none;
  }

  .hero-product-mobile {
    display: block;
    width: auto;
    height: min(36vh, 15em);
    max-width: min(52vw, 12em);
    object-fit: contain;
    margin: 0.35em auto 0.6em;
  }

  .product-story-pin {
    display: none;
  }

  .logos-bar {
    gap: 1.5em;
    flex-wrap: wrap;
    height: auto;
    padding: 1.5em;
  }

  .cta,
  .footer-top,
  .footer-cols {
    flex-direction: column;
  }

  .cta-mosaic {
    width: 100%;
  }

  .page-hero h1,
  .blog-list h1,
  .text-100 {
    font-size: 3.4em;
  }

  .menu-heading {
    font-size: 2.6em;
  }

  .apply-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  body {
    font-size: clamp(15px, 4vw, 16.5px);
  }

  .nav-wrap,
  .hero-content,
  .products,
  .footer,
  .community,
  .cta,
  .story-block,
  .about-fan,
  .space-collab,
  .open-clear-copy,
  .think,
  .practice-guide,
  .set-project,
  .begin-services,
  .news-banner {
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
  }

  .pathway-grid,
  .result-row {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    margin-top: 1.5em;
  }

  .capsule-video {
    display: none;
  }

  .capsule-fallback {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    width: min(22em, 80%);
    transform: none;
    margin: 1em auto 2em;
    grid-column: 1;
  }

  .capsule-question,
  .capsule-copy {
    position: relative;
    justify-self: start;
    align-self: start;
  }

  .capsule-lead {
    white-space: normal;
  }

  .trial-note.next,
  .trial-note.why {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 1em 1em 0;
  }
}

/* Daily Care Lab — Korean copy + extra sections */
html[lang="ko"] .text-100,
html[lang="ko"] .text-60,
html[lang="ko"] .page-hero h1 {
  line-height: 1.12;
  word-break: keep-all;
}

html[lang="ko"] .hero .text-100 {
  font-size: 4.4em;
  font-weight: 800;
  line-height: 0.95;
  word-break: normal;
}

@media (min-width: 992px) {
  html[lang="ko"] .hero-content {
    grid-template-columns: 1.65fr 0.45fr 0.9fr;
  }

  html[lang="ko"] .hero-heading-1 {
    max-width: none;
  }

  html[lang="ko"] .problem-copy {
    padding-left: calc(12vw + 2.2em);
    position: relative;
    z-index: auto;
  }

  html[lang="ko"] .capsule-fallback.bottle {
    opacity: 0;
  }

  html[lang="ko"] .capsule {
    background: radial-gradient(ellipse at 50% 42%, var(--mint-pale) 0%, var(--sky) 48%, var(--page) 100%);
    z-index: auto;
    overflow: visible;
  }

  html[lang="ko"] .capsule-scene {
    position: relative;
    z-index: auto;
    min-height: 175vh;
  }

  html[lang="ko"] .capsule-question,
  html[lang="ko"] .capsule-copy {
    position: relative;
    z-index: 8;
  }

  html[lang="ko"] .capsule-question {
    white-space: nowrap;
  }

  html[lang="ko"] .capsule-copy {
    transform: translateX(-12vw);
  }

  html[lang="ko"] .problem-media.is-still img {
    opacity: 0.42;
    transform: scale(1.06);
  }
}

.ko-copy {
  text-transform: none;
  word-break: keep-all;
  line-height: 1.6;
}

.section-kicker {
  display: block;
  margin-bottom: 0.7em;
}

.hero-kicker {
  margin-bottom: 0.85em;
  opacity: 0.88;
}

.hero-heading-2.is-wide {
  max-width: 22em;
}

.hero-copy .ko-copy {
  max-width: 22em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7em;
  margin-top: 1.5em;
}

.hero-actions .btn {
  margin-top: 0;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.text-arrow:hover {
  opacity: 1;
}

.brand-bar {
  gap: 0;
}

.brand-bar p {
  opacity: 0.92;
}

.mobile-only {
  display: none;
}

.problem-media.is-still {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.problem-media.is-still img {
  position: relative;
  inset: auto;
  width: min(22em, 72%);
  height: auto;
  object-fit: contain;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin-top: 2.4em;
}

.scene-card {
  border: 1px solid var(--line);
  padding: 1.2em 1.15em 1.35em;
  min-height: 9.5em;
  background: transparent;
  color: var(--main-green);
  cursor: pointer;
  transition:
    background-color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease);
}

.scene-card .label {
  display: block;
  margin-bottom: 0.7em;
  font-weight: 700;
  opacity: 0.65;
  transition: color 0.28s var(--ease), opacity 0.28s var(--ease);
}

.scene-card p {
  font-size: 1.05em;
  line-height: 1.4;
  transition: color 0.28s var(--ease);
}

.scene-card:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.scene-card:hover .label,
.scene-card:hover p,
.scene-card:hover .text-14-caps.green {
  color: var(--ink);
  opacity: 1;
}

.problem-close {
  margin-top: 2.2em;
  max-width: 22em;
  font-weight: 700;
}

.capsule-fallback.bottle {
  width: min(20em, 34vw);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.28));
}

.capsule-copy.is-wide {
  max-width: none;
}

.feature-cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-cards.on-light {
  margin-top: 3em;
  padding: 0;
}

/* Calmlyss-inspired soft sections (post SCHOOL CLEAN) */
.section-intro {
  text-align: center;
  max-width: 28em;
  margin: 0 auto 3.4em;
}

.section-intro.left {
  text-align: left;
  margin-left: 0;
  max-width: 34em;
}

.section-intro .text-60 {
  margin-top: 0.25em;
}

.section-intro .ko-copy {
  margin-top: 1.1em;
  opacity: 0.88;
}

.section-kicker {
  margin-bottom: 0.85em;
  opacity: 0.58;
  letter-spacing: 0.1em;
}

.soft-grid {
  display: grid;
  gap: 1.15em;
}

.soft-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 74, 77, 0.08);
  border-radius: 1.35em;
  box-shadow: 0 10px 30px rgba(27, 74, 77, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.soft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(27, 74, 77, 0.08);
  background: #fff;
}

.soft-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(27, 74, 77, 0.08);
  border-radius: 1.8em;
  box-shadow: 0 16px 48px rgba(27, 74, 77, 0.05);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  background: rgba(191, 232, 230, 0.55);
  color: var(--ink);
  font-size: 0.82em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.pill.soft {
  background: rgba(230, 247, 246, 0.9);
}

.feature-card.lined {
  background: transparent;
  border: 1px solid var(--line);
  min-height: 20em;
}

.feature-card .point-label {
  display: block;
  margin-bottom: 0.35em;
  opacity: 0.55;
}

.feature-card .point-en {
  display: block;
  margin-bottom: 1.1em;
  letter-spacing: 0.06em;
}

.products-head .ko-copy {
  margin-top: 1.2em;
  max-width: 36em;
}

.products-foot {
  margin-top: 3em;
}

.product-visual.school {
  background: var(--cream);
}

.product-visual.active {
  background: var(--mint);
}

.product-visual.soft {
  background: var(--sky);
}

.product-visual img.bottle {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.scent-meta {
  margin-top: 0.45em;
  opacity: 0.85;
  font-size: 0.82em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 1.6em 0 2em;
}

.tag {
  border: 1px solid var(--line);
  padding: 0.35em 0.7em;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-block {
  position: relative;
  background: linear-gradient(180deg, #f7fdfd 0%, #f3f9f8 55%, #eef6f5 100%);
  padding: calc(7em + 70px) max(var(--padding-web), calc((100% - var(--section-max)) / 2)) calc(7.5em + 70px);
  overflow: hidden;
}

.story-block-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(1.6em, 3vw, 3.2em);
  align-items: center;
}

.story-visuals {
  position: relative;
  width: 100%;
  max-width: none;
}

.story-photo {
  display: block;
  object-fit: cover;
  border-radius: 1.5em;
  box-shadow: 0 18px 48px rgba(27, 74, 77, 0.12);
}

.story-photo.is-single {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.story-copy {
  padding-top: 0.4em;
  justify-self: end;
  display: inline-grid;
  justify-items: stretch;
  max-width: 100%;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 1em 0.55em 0.85em;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(27, 74, 77, 0.1);
  box-shadow: 0 8px 22px rgba(27, 74, 77, 0.05);
  color: var(--ink);
  font-size: 0.82em;
  letter-spacing: 0.04em;
  font-weight: 500;
  justify-self: start;
}

.story-badge-dot {
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
}

.story-title {
  margin: 0.15em 0 1em;
  color: var(--heading-color);
  font-size: clamp(2.2em, 3.6vw, 3.4em);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.story-title-line {
  display: block;
  white-space: nowrap;
}

.story-title em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  color: #4a7a7c;
}

/* width:0 + min-width:100% keeps body/stats from widening past the title */
.story-body {
  display: grid;
  gap: 1em;
  width: 0;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.story-body p {
  color: var(--ink-soft);
  font-size: 1.05em;
  line-height: 1.7;
  word-break: keep-all;
}

.story-stats {
  margin-top: 2.2em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 0;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 1.25em;
  border: 1px solid rgba(27, 74, 77, 0.08);
  box-shadow: 0 14px 36px rgba(27, 74, 77, 0.06);
  overflow: hidden;
}

.story-stat {
  padding: 1.35em 1em 1.4em;
  text-align: center;
  border-right: 1px dashed rgba(27, 74, 77, 0.16);
  background: transparent;
  transition: background 0.35s var(--ease);
  cursor: default;
}

.story-stat:hover {
  background: var(--mint-pale);
}

.story-stat:last-child {
  border-right: 0;
}

.story-stat strong {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  font-size: 2.1em;
  line-height: 1;
  color: var(--heading-color);
  margin-bottom: 0.45em;
}

.story-stat span {
  display: block;
  font-size: 0.86em;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  word-break: keep-all;
}

.story-disclaimer {
  margin-top: 1.3em;
  text-align: left;
  opacity: 0.5;
}

@media (max-width: 991px) {
  .story-block {
    padding: 4.5em var(--padding-mobile) 5em;
  }

  .story-block-inner {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .story-visuals {
    max-width: 100%;
    margin-inline: auto;
  }

  .story-photo.is-single {
    aspect-ratio: 16 / 10;
    border-radius: 1.15em;
  }

  .story-copy {
    display: grid;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .story-title {
    font-size: clamp(1.85em, 7.2vw, 2.45em);
    margin: 0.35em 0 0.85em;
  }

  .story-title-line {
    white-space: normal;
  }

  .story-body,
  .story-stats {
    width: 100%;
    min-width: 0;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.5em;
  }

  .story-stat {
    padding: 1.1em 0.7em 1.15em;
  }

  .story-stat:nth-child(2) {
    border-right: 0;
  }

  .story-stat:nth-child(1),
  .story-stat:nth-child(2) {
    border-bottom: 1px dashed rgba(27, 74, 77, 0.16);
  }
}

.usecase.calmly {
  background: linear-gradient(180deg, #f7fdfd 0%, #eef8f7 100%);
  padding: 7.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 8em;
}

.usecase-grid.soft-grid {
  grid-template-columns: 1fr 1fr;
}

.usecase-item.soft-card {
  padding: 2em 1.7em 2.1em;
  border: 1px solid rgba(27, 74, 77, 0.08);
}

.usecase-item .num {
  display: block;
  margin-bottom: 1em;
  opacity: 0.45;
  letter-spacing: 0.1em;
}

.usecase-item h3 {
  font-size: 1.85em;
  font-weight: 500;
  margin-bottom: 0.75em;
  color: var(--heading-color);
}

.usecase-note {
  margin: 3em auto 0;
  max-width: 24em;
  text-align: center;
  font-weight: 500;
}

.disclaimer {
  margin-top: 1.3em;
  text-align: center;
  font-size: 0.82em;
  opacity: 0.5;
  line-height: 1.5;
}

.think {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: 6.5em max(var(--padding-web), calc((100% - min(72rem, 100% - 2 * var(--padding-web))) / 2)) 7em;
}

.think-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.think-bg-pin {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  will-change: transform;
}

.think-bg-pin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.think-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 42, 44, 0.52) 0%, rgba(16, 42, 44, 0.7) 48%, rgba(16, 42, 44, 0.78) 100%),
    linear-gradient(90deg, rgba(16, 42, 44, 0.28), transparent 42%, rgba(16, 42, 44, 0.22));
}

.think-inner {
  position: relative;
  max-width: 72rem;
  margin-inline: auto;
}

.think-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 1em 0.55em 0.85em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.82em;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 1.8em;
}

.think-badge-dot {
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
}

.think-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(12em, 0.7fr);
  gap: 2em 2.4em;
  align-items: end;
  margin-bottom: 2.6em;
}

.think-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2em, 3.8vw, 3.6em);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.think-title-line {
  white-space: nowrap;
}

.think-title em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  color: #d7ebe9;
}

.think-lede {
  margin: 0;
  max-width: 26em;
  justify-self: end;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02em;
  line-height: 1.7;
  word-break: keep-all;
}

.think-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15em;
}

.think-card {
  min-height: 16.5em;
  padding: 1.85em 1.7em 2em;
  border-radius: 1.7em;
  background: rgba(24, 52, 55, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(8, 24, 26, 0.18);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: default;
}

.think-card:hover {
  background: rgba(48, 98, 102, 0.72);
  border-color: rgba(191, 232, 230, 0.28);
  box-shadow: 0 28px 52px rgba(8, 24, 26, 0.28);
  animation: think-card-float 1.7s ease-in-out infinite;
}

@keyframes think-card-float {
  0%,
  100% {
    transform: translateY(-0.45em);
  }
  50% {
    transform: translateY(-1.05em);
  }
}

.think-icon {
  display: grid;
  place-items: center;
  width: 2.7em;
  height: 2.7em;
  margin-bottom: 1.35em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8f6f5;
}

.think-icon svg {
  width: 1.15em;
  height: 1.15em;
}

.think-card h3 {
  margin: 0 0 0.85em;
  color: #fff;
  font-size: clamp(1.35em, 1.8vw, 1.7em);
  font-weight: 600;
  line-height: 1.25;
  word-break: keep-all;
}

.think-card h3 em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  color: #bfe8e6;
}

.think-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98em;
  line-height: 1.6;
  word-break: keep-all;
}

@media (prefers-reduced-motion: reduce) {
  .think-card:hover {
    animation: none;
    transform: translateY(-0.55em);
  }
}

@media (max-width: 991px) {
  .think-head {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }

  .think-title-line {
    white-space: normal;
  }

  .think-lede {
    justify-self: start;
    max-width: 34em;
  }

  .think-grid {
    grid-template-columns: 1fr;
  }

  .think-card {
    min-height: 0;
  }
}

.space-collab {
  background: #f7f8f7;
  padding: 6.5em max(var(--padding-web), calc((100% - min(72rem, 100% - 2 * var(--padding-web))) / 2)) 7em;
}

.space-collab-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2em, 4vw, 4.2em);
  align-items: stretch;
  max-width: 72rem;
  margin-inline: auto;
}

.space-collab-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.85em;
  height: 100%;
  min-height: 0;
}

.space-collab-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.85em;
  min-height: 0;
  height: 100%;
}

.space-collab-shot {
  position: relative;
  margin: 0;
  border-radius: 1.15em;
  overflow: hidden;
  background: var(--mint-pale);
  min-height: 0;
  height: 100%;
}

.space-collab-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-collab-shot.is-product {
  background: linear-gradient(180deg, #e8f6f5 0%, #d5eeed 100%);
}

.space-collab-shot.is-product img {
  object-fit: contain;
  object-position: center 58%;
  padding: 1.4em 1.1em 0.8em;
}

.space-collab-copy {
  max-width: 32em;
}

.space-collab-title {
  margin: 1.3em 0 0.9em;
  color: var(--heading-color);
  font-size: clamp(2.3em, 3.8vw, 3.55em);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.space-collab-title em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  color: #5a8a8c;
}

.space-collab-lede {
  margin: 0 0 2em;
  color: var(--ink-soft);
  font-size: 1.02em;
  line-height: 1.7;
  word-break: keep-all;
}

.space-collab-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dashed rgba(27, 74, 77, 0.22);
}

.space-collab-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9em;
  align-items: center;
  padding: 1.05em 0;
  border-bottom: 1px dashed rgba(27, 74, 77, 0.22);
  color: var(--heading-color);
  font-size: 1.02em;
  font-weight: 600;
  line-height: 1.4;
  word-break: keep-all;
}

.space-collab-icon {
  display: grid;
  place-items: center;
  width: 1.55em;
  height: 1.55em;
  color: #7aa8a6;
  flex: none;
}

.space-collab-icon svg {
  width: 100%;
  height: 100%;
}

.space-collab-cta {
  margin-top: 2em;
  display: inline-flex;
}

.begin-services {
  background: #f6f7f5;
  padding: 6.5em max(var(--padding-web), calc((100% - min(72rem, 100% - 2 * var(--padding-web))) / 2)) 7em;
}

.begin-services-inner {
  max-width: 72rem;
  margin-inline: auto;
}

.begin-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2em 3em;
  align-items: end;
  margin-bottom: 2.4em;
}

.begin-services-badge {
  margin-bottom: 1.2em;
}

.begin-services-title {
  margin: 0 0 0.85em;
  color: var(--heading-color);
  font-size: clamp(2.2em, 3.8vw, 3.4em);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.begin-services-lede {
  margin: 0;
  max-width: 34em;
  color: var(--ink-soft);
  font-size: 1.02em;
  line-height: 1.65;
  word-break: keep-all;
}

.begin-services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-bottom: 0.15em;
  padding: 1em 1.7em;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.88em;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.begin-services-cta:hover {
  background: #163a3c;
  transform: translateY(-2px);
}

.begin-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15em;
}

.begin-services-card {
  min-height: 16em;
  padding: 1.7em 1.5em 1.85em;
  border-radius: 1.35em;
  background: var(--mint-pale);
  border: 1px solid rgba(27, 74, 77, 0.06);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.begin-services-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(27, 74, 77, 0.08);
}

.begin-services-icon {
  display: grid;
  place-items: center;
  width: 2.7em;
  height: 2.7em;
  margin-bottom: 1.35em;
  border-radius: 0.7em;
  background: var(--ink);
  color: var(--mint);
}

.begin-services-icon svg {
  width: 1.15em;
  height: 1.15em;
}

.begin-services-card h3 {
  margin: 0 0 0.7em;
  color: var(--heading-color);
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.begin-services-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98em;
  line-height: 1.6;
  word-break: keep-all;
}

@media (max-width: 991px) {
  .begin-services-head {
    grid-template-columns: 1fr;
    gap: 1.4em;
  }

  .begin-services-cta {
    justify-self: start;
  }

  .begin-services-grid {
    grid-template-columns: 1fr;
  }

  .begin-services-card {
    min-height: 0;
  }
}

.founder.calmly {
  background: var(--page);
  padding: 4.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 5em;
}

.founder-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4em;
  padding: 2.4em;
  background: linear-gradient(150deg, rgba(255, 244, 230, 0.7), rgba(230, 247, 246, 0.85));
}

.founder-lead .text-60 {
  margin: 0.35em 0 1em;
}

.quote-block {
  margin-top: 2em;
  font-size: 1.55em;
  font-weight: 500;
  line-height: 1.4;
  max-width: 16em;
  color: var(--heading-color);
}

.founder-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4em;
  padding: 0.6em;
}

.founder-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2em;
  padding: 0.6em;
}

.role-list {
  display: grid;
  gap: 1em;
}

.role-card {
  padding: 1.4em 1.3em 1.5em;
}

.role-card h3 {
  margin-bottom: 0.55em;
  letter-spacing: 0.06em;
}

.founder-turn {
  margin-top: 0;
}

@media (max-width: 991px) {
  .space-collab-inner {
    grid-template-columns: 1fr;
    gap: 2.4em;
  }

  .space-collab-gallery {
    min-height: 22em;
    height: auto;
    max-width: 28em;
  }

  .space-collab-shot.is-tall {
    min-height: 22em;
  }

  .space-collab-copy {
    max-width: none;
  }
}

.open-clear {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(92vh, 44em);
  padding-block: 100px;
  background: #fff;
  overflow: visible;
}

.open-clear-visual {
  position: relative;
  background: #d7e3e6;
  min-height: 28em;
}

.open-clear-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.open-clear-bottle {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  width: min(12.4em, 37%);
  transform: translate(48%, -50%);
  filter: drop-shadow(0 18px 30px rgba(16, 42, 44, 0.26));
  pointer-events: none;
}

.open-clear-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: clamp(3em, 6vw, 5.5em) clamp(2.4em, 5vw, 5em) clamp(3em, 6vw, 5.5em) clamp(7.5em, 12vw, 11em);
}

.open-clear-kicker {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  font-size: 0.82em;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

.open-clear-title {
  margin: 0 0 1.15em;
  color: var(--heading-color);
  font-size: clamp(2.1em, 3.4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.open-clear-lead {
  margin: 0 0 1.1em;
  max-width: 28em;
  padding-left: 1em;
  border-left: 2px solid var(--heading-color);
  color: var(--heading-color);
  font-size: 1.12em;
  font-weight: 600;
  line-height: 1.65;
  word-break: keep-all;
}

.open-clear-body {
  margin: 0;
  max-width: 30em;
  color: var(--ink-soft);
  font-size: 0.98em;
  line-height: 1.7;
  word-break: keep-all;
}

.open-clear-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.1em;
  padding: 1em 1.85em;
  width: fit-content;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.open-clear-cta:hover {
  background: #163a3c;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .products {
    padding: 4.5em var(--padding-mobile) 0;
  }

  .school-clean-gap {
    height: 3.5em;
  }

  .product-grid {
    margin-top: 1.6em;
    gap: 1.2em;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    margin-top: 0;
  }

  .products-head .text-60 {
    max-width: none;
    font-size: clamp(1.7em, 6.5vw, 2.2em);
  }

  .say-marquee {
    padding: 4.5em 0 4em;
  }

  .say-marquee-head {
    padding-inline: var(--padding-mobile);
  }

  .open-clear {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .open-clear-visual {
    min-height: 18em;
  }

  .open-clear-bottle {
    right: 50%;
    bottom: -1.6em;
    top: auto;
    width: min(7.5em, 32%);
    transform: translate(50%, 0);
  }

  .open-clear-copy {
    padding: 3.2em var(--padding-mobile) 3.5em;
  }

  .space-collab {
    padding: 4.5em var(--padding-mobile) 5em;
  }

  .think {
    padding: 4.5em var(--padding-mobile) 5em;
  }

  .begin-services {
    padding-block: 4.5em 5em;
  }

  .philosophy-cta {
    min-height: 28em;
    padding-block: 4.5em;
    padding-inline: var(--padding-mobile);
  }

  .hero-content {
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
    padding-top: 5.5em;
    gap: 1em;
  }

  html[lang="ko"] .hero .text-100 {
    font-size: clamp(1.85em, 8vw, 2.35em);
    line-height: 1.05;
  }

  html[lang="ko"] .hero-heading-2 .text-60 {
    font-size: clamp(1.35em, 5.8vw, 1.75em);
  }
}

.safety.calmly {
  background: linear-gradient(180deg, #f7fdfd 0%, var(--mint-pale) 100%);
  padding: 7.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 8em;
}

.safety-lede {
  max-width: 38em;
  margin-inline: auto;
}

.safety-grid.soft-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 0.4em 0 2em;
}

.safety-card.soft-card {
  padding: 1.6em 1.3em 1.8em;
  min-height: 12em;
}

.safety-mark {
  display: inline-flex;
  width: 2em;
  height: 2em;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.78em;
  margin-bottom: 1.1em;
}

.safety-card strong {
  display: block;
  margin-top: 0.85em;
  font-size: 1.2em;
  font-weight: 500;
}

.caution.soft-card {
  max-width: 40em;
  margin: 0 auto 2em;
  padding: 1.5em 1.6em;
  border: 1px solid rgba(27, 74, 77, 0.18);
  text-align: center;
}

.safety .text-arrow,
.reviews .text-arrow,
.sets-all,
.community.plain .text-arrow {
  color: var(--main-green);
  margin: 1.4em auto 0;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.philosophy-cta {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 46em);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7em max(var(--padding-web), calc((100% - 42em) / 2));
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.philosophy-cta-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #1a3032;
}

.philosophy-cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-cta-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 28, 30, 0.55) 0%, rgba(12, 28, 30, 0.72) 55%, rgba(12, 28, 30, 0.82) 100%);
}

.philosophy-cta-inner {
  position: relative;
  max-width: 44em;
  margin-inline: auto;
}

.philosophy-cta-title {
  margin: 0 0 1em;
  color: #fff;
  font-size: clamp(2.4em, 5vw, 4em);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.philosophy-cta-lede {
  margin: 0 auto 1.4em;
  max-width: 40em;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05em;
  line-height: 1.7;
  word-break: keep-all;
}

.philosophy-cta-lede p {
  margin: 0;
  white-space: nowrap;
}

.philosophy-cta-lede p + p {
  margin-top: 1.1em;
}

.philosophy-cta-core {
  position: relative;
  margin: 0 auto 2.2em;
  max-width: 16em;
  padding: 1.15em 0;
  color: #d7ebe9;
  font-size: clamp(1.25em, 2vw, 1.55em);
  font-weight: 600;
  line-height: 1.35;
  word-break: keep-all;
}

.philosophy-cta-core::before,
.philosophy-cta-core::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.2em;
  height: 1px;
  background: rgba(215, 235, 233, 0.75);
  transform: translateX(-50%);
}

.philosophy-cta-core::before {
  top: 0;
}

.philosophy-cta-core::after {
  bottom: 0;
}

.philosophy-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85em;
}

.philosophy-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11em;
  padding: 1em 1.7em;
  border-radius: 999px;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.philosophy-cta-btn.is-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.philosophy-cta-btn.is-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.philosophy-cta-btn.is-solid {
  background: var(--mint);
  color: var(--ink);
  border: 1px solid transparent;
}

.philosophy-cta-btn.is-solid:hover {
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .philosophy-cta {
    min-height: 34em;
    padding-block: 5.5em;
  }

  .philosophy-cta-lede p {
    white-space: normal;
  }

  .philosophy-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .philosophy-cta-btn {
    width: min(100%, 18em);
  }
}

.philosophy.calmly {
  background: radial-gradient(ellipse at 50% 35%, #f4fbfb 0%, var(--mint-pale) 42%, var(--sky) 78%, var(--page) 100%);
  color: var(--ink);
  min-height: 100vh;
  padding: 8em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-inner {
  max-width: 42em;
  text-align: center;
}

.philosophy .text-100 {
  max-width: none;
  margin: 0 auto 1.5em;
  font-size: clamp(2.6em, 5.2vw, 4.4em);
  font-weight: 700;
  line-height: 1.12;
}

.philosophy-body {
  max-width: 34em;
  margin-inline: auto;
  opacity: 0.9;
  line-height: 1.75;
}

.philosophy-core {
  margin: 2.6em auto 0;
  font-size: clamp(1.6em, 2.6vw, 2.2em);
  line-height: 1.3;
  max-width: 14em;
  font-weight: 600;
  color: var(--heading-color);
}

.philosophy-aside {
  margin-top: 1.1em;
  opacity: 0.8;
}

.say-marquee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    url("../assets/lifestyle/review-bg.jpg?v=product") center 42% / cover no-repeat;
  padding: calc(6.5em + 70px) 0 calc(5.5em + 70px);
}

.say-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(18, 28, 30, 0.48);
  pointer-events: none;
}

.say-marquee > * {
  position: relative;
  z-index: 1;
}

.say-marquee-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5em;
  max-width: 72rem;
  margin: 0 auto 2.4em;
  padding: 0 var(--padding-web);
}

.say-eyebrow {
  margin: 0;
  max-width: 14em;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05em;
  font-weight: 500;
  line-height: 1.35;
}

.say-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(2.8em, 7vw, 5.6em);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.say-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), #000 5%, #000 95%, rgba(0, 0, 0, 0.45));
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), #000 5%, #000 95%, rgba(0, 0, 0, 0.45));
}

.say-track {
  display: flex;
  gap: 1.1em;
  width: max-content;
  padding: 0.4em 0 1.2em;
  animation: say-marquee 42s linear infinite;
}

.say-track-wrap:hover .say-track {
  animation-play-state: paused;
}

@keyframes say-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.say-card {
  flex: 0 0 min(22em, 78vw);
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  min-height: 15.5em;
  padding: 1.45em 1.4em 1.35em;
  border-radius: 1.15em;
  background: #fff;
  box-shadow: 0 14px 36px rgba(60, 48, 36, 0.08);
}

.say-card-top {
  display: flex;
  align-items: center;
  gap: 0.75em;
}

.say-avatar {
  display: grid;
  place-items: center;
  width: 2.35em;
  height: 2.35em;
  border-radius: 50%;
  background: var(--avatar, var(--mint));
  color: #fff;
  font-size: 0.9em;
  font-weight: 700;
  flex: none;
}

.say-card-top strong {
  color: var(--heading-color);
  font-size: 0.78em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.say-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02em;
  line-height: 1.55;
  word-break: keep-all;
  flex: 1;
}

.say-stars {
  color: #5a534a;
  font-size: 0.78em;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.say-note {
  margin: 1.6em auto 0;
  max-width: 72rem;
  padding: 0 var(--padding-web);
  color: var(--ink-soft);
  font-size: 0.82em;
  opacity: 0.55;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .say-track {
    animation: none;
    flex-wrap: wrap;
    width: min(72rem, 100%);
    margin-inline: auto;
    padding-inline: var(--padding-web);
    justify-content: center;
  }

  .say-card[aria-hidden="true"] {
    display: none;
  }

  .say-track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 767px) {
  .say-marquee-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4em;
  }

  .say-title {
    font-size: clamp(2em, 11vw, 2.8em);
  }

  .scene-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75em;
  }

  .scene-card {
    padding: 1em 0.9em;
  }

  .set-project {
    padding-top: 4.2em;
    padding-bottom: 4.5em;
  }

  .set-project-made {
    grid-template-columns: minmax(5.5em, 6.5em) minmax(0, 1fr);
    gap: 0.9em;
  }

  .set-project-quote {
    left: 0.75em;
    right: 0.75em;
    width: auto;
    padding: 0.95em 1em;
  }

  .practice-guide {
    padding-top: 4.2em;
    padding-bottom: 4.5em;
  }

  .news-banner-shell {
    min-height: 20em;
    border-radius: 1.25em;
    padding: 2.6em 1.15em;
  }
}

.reviews.calmly {
  background: linear-gradient(180deg, #fff8ef 0%, var(--cream) 100%);
  padding: 7.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 8em;
}

.review-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65em;
  margin: -1.2em 0 2.6em;
}

.review-grid.soft-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.review-card.soft-card {
  padding: 1.7em 1.5em 1.9em;
  min-height: 17em;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}

.review-card p {
  font-size: 1.25em;
  line-height: 1.55;
  margin-top: auto;
}

.practice-guide {
  background: linear-gradient(180deg, #f7f3ec 0%, var(--page) 100%);
  padding: 6.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 7em;
}

.practice-guide-inner {
  max-width: var(--section-max);
  margin: 0 auto;
}

.practice-guide-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16em, 0.75fr);
  gap: 2.5em 3em;
  align-items: end;
  margin-bottom: 2.8em;
}

.practice-guide-copy .story-badge {
  margin-bottom: 1.1em;
}

.practice-guide-title {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(2.2em, 4vw, 3.55em);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.practice-guide-title em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  color: #6a8f90;
}

.practice-guide-lede {
  margin: 1em 0 0;
  max-width: 28em;
  color: var(--ink-soft);
  font-size: 1.02em;
  line-height: 1.65;
  word-break: keep-all;
}

.practice-guide-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7em;
}

.practice-guide-feats li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 2.7em;
  padding: 0.55em 0.95em;
  border: 1px solid rgba(27, 74, 77, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--heading-color);
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.practice-feat-icon {
  display: grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  color: var(--ink-soft);
  flex: none;
}

.practice-feat-icon svg {
  width: 100%;
  height: 100%;
}

.practice-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25em;
}

.practice-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease);
}

.practice-card:hover {
  transform: translateY(-6px);
}

.practice-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 1.5em;
  background: #e8e2d8;
}

.practice-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.55s var(--ease);
}

.practice-card:hover .practice-card-media img {
  transform: scale(1.04);
}

.practice-card-tags {
  position: absolute;
  left: 0.85em;
  right: 0.85em;
  bottom: 0.85em;
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  pointer-events: none;
}

.practice-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 0.8em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--heading-color);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(40, 32, 24, 0.12);
}

.practice-tag.is-time {
  font-weight: 500;
  opacity: 0.95;
}

.practice-tag-dot {
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  flex: none;
}

.practice-tag-dot.is-mint { background: #6fb8b4; }
.practice-tag-dot.is-sand { background: #c4a484; }
.practice-tag-dot.is-sky { background: #7eb4d4; }

.practice-card h3 {
  margin: 1.05em 0 0.45em;
  color: var(--heading-color);
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.practice-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95em;
  line-height: 1.55;
  word-break: keep-all;
}

.practice-guide-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.8em;
  padding-top: 1.6em;
  border-top: 1px dashed rgba(27, 74, 77, 0.18);
}

.practice-guide-cta {
  width: fit-content;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .practice-guide-head {
    grid-template-columns: 1fr;
    gap: 1.8em;
    align-items: start;
  }

  .practice-guide-feats {
    max-width: 28em;
  }
}

@media (max-width: 767px) {
  .practice-guide {
    padding-top: 5em;
    padding-bottom: 5.5em;
  }

  .practice-guide-grid {
    grid-template-columns: 1fr;
    gap: 1.6em;
  }

  .practice-card-media {
    aspect-ratio: 5 / 4;
  }

  .practice-guide-feats {
    max-width: none;
  }
}

.guide.calmly {
  background: var(--page);
  padding: 7.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 8em;
}

.guide-list {
  display: grid;
  gap: 0.9em;
  max-width: 46em;
  margin: 0 auto;
}

.guide-item.soft-card {
  display: flex;
  justify-content: space-between;
  gap: 1.5em;
  align-items: center;
  padding: 1.45em 1.5em;
  text-decoration: none;
}

.guide-answer {
  flex: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--heading-color);
}

.guide-foot {
  margin: 2.4em auto 1.5em;
  text-align: center;
}

.guide.calmly .btn {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.set-project {
  background: #fff;
  padding: 6.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 7em;
}

.set-project-intro {
  max-width: 28em;
  margin: 0 0 3.2em;
}

.set-project-intro .story-badge {
  margin-bottom: 1.1em;
}

.set-project-heading {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(2.2em, 4vw, 3.4em);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.set-project-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2em 2.4em;
  align-items: stretch;
  padding: 2.6em 0;
  border-top: 1px solid rgba(27, 74, 77, 0.12);
}

.set-project-label {
  margin: 0 0 0.7em;
  color: var(--ink-soft);
  font-size: 0.9em;
  font-weight: 500;
  opacity: 0.72;
}

.set-project-copy h3 {
  margin: 0 0 1.15em;
  color: var(--heading-color);
  font-size: clamp(1.55em, 2.4vw, 2.15em);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.set-project-task {
  margin-bottom: 1.6em;
}

.set-project-task span,
.set-project-made span {
  display: block;
  margin-bottom: 0.35em;
  color: #9a7d5c;
  font-size: 0.92em;
  font-weight: 600;
}

.set-project-task p,
.set-project-made p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98em;
  line-height: 1.6;
  word-break: keep-all;
}

.set-project-made {
  display: grid;
  grid-template-columns: minmax(7.5em, 9.5em) minmax(0, 1fr);
  gap: 1em 1.15em;
  align-items: start;
}

.set-project-made img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1.15em;
  display: block;
  background: #efe9e0;
}

.set-project-visual {
  position: relative;
  min-height: 22em;
  border-radius: 1.5em;
  overflow: hidden;
  background: #efe9e0;
}

.set-project-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.set-project-quote {
  position: absolute;
  right: 1em;
  bottom: 1em;
  width: min(15.5em, calc(100% - 2em));
  padding: 1em 1.05em 0.95em;
  border-radius: 1em;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(40, 32, 24, 0.14);
}

.set-project-quote-top {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.65em;
}

.set-project-avatar {
  display: grid;
  place-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: var(--avatar, var(--mint));
  color: #fff;
  font-size: 0.78em;
  font-weight: 700;
  flex: none;
}

.set-project-quote-top strong {
  color: var(--heading-color);
  font-size: 0.78em;
  letter-spacing: 0.04em;
}

.set-project-quote p {
  margin: 0 0 0.55em;
  color: var(--ink-soft);
  font-size: 0.86em;
  line-height: 1.45;
  word-break: keep-all;
}

.set-project-stars {
  color: #5a534a;
  font-size: 0.7em;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.set-project-cta {
  display: flex;
  width: fit-content;
  margin: 2.2em auto 0;
}

@media (max-width: 980px) {
  .set-project-block {
    grid-template-columns: 1fr;
    gap: 1.6em;
  }

  .set-project-visual {
    min-height: 18em;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 767px) {
  .set-project {
    padding-top: 5em;
    padding-bottom: 5.5em;
  }

  .set-project-made {
    grid-template-columns: minmax(6.5em, 7.5em) minmax(0, 1fr);
  }

  .set-project-quote {
    left: 0.85em;
    right: 0.85em;
    width: auto;
  }
}

.sets.calmly {
  background: linear-gradient(180deg, #e7f3fa 0%, var(--sky) 100%);
  padding: 7.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 8em;
}

.set-grid.soft-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.set-card.soft-card {
  padding: 1.8em 1.55em 1.9em;
  min-height: 19em;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  text-decoration: none;
}

.set-card h3 {
  font-size: 1.55em;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0.2em 0;
}

.set-card .text-arrow {
  margin-top: auto;
}

.set-card.is-daily { border-top: 3px solid #e8c9a0; }
.set-card.is-active { border-top: 3px solid var(--mint); }
.set-card.is-all { border-top: 3px solid var(--ink-soft); }

.community.plain.calmly {
  background: linear-gradient(180deg, #fff8ef 0%, var(--cream) 100%);
  width: 100%;
  box-sizing: border-box;
  padding: 7.5em 0 5em max(3em, calc((100% - var(--section-max)) / 2 + 1.5em));
  min-height: auto;
  position: relative;
}

.community-tools {
  position: absolute;
  top: 7.5em;
  right: max(var(--padding-web), calc((100% - var(--section-max)) / 2));
}

.community.plain.calmly .carousel {
  margin-top: 2.4em;
}

.blog-card.soft-media {
  border-radius: 1.4em;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(27, 74, 77, 0.08);
}

.blog-card.soft-media .blog-card-copy {
  border-radius: 1.1em 0 0 0;
}

.news-banner {
  background: var(--page);
  width: 100%;
  box-sizing: border-box;
  padding: 4.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2));
}

.news-banner-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 28em;
  border-radius: 2em;
  display: grid;
  place-items: center;
  padding: 4.5em 1.8em;
}

.news-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.news-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18, 28, 30, 0.58);
}

.news-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36em;
  width: 100%;
}

.news-banner-badge {
  margin-bottom: 1.4em;
}

.news-banner-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2em, 4.2vw, 3.5em);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.news-banner-title em {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
}

.news-banner-lede {
  margin: 1.1em 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02em;
  line-height: 1.65;
  word-break: keep-all;
}

.news-banner-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  width: min(34em, 100%);
  margin-top: 2em;
}

.news-banner-form input {
  flex: 1;
  min-width: 0;
  height: 3.15em;
  padding: 0 1.35em;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.95em;
  outline: none;
}

.news-banner-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.news-banner-form input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.news-banner-form button {
  flex: none;
  height: 3.15em;
  padding: 0 1.6em;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--heading-color);
  font: inherit;
  font-size: 0.92em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.news-banner-form button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.news-banner-note {
  margin: 1.1em 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92em;
}

.news-banner-note[hidden] {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .news-banner {
    padding-top: 3.5em;
    padding-bottom: 3.5em;
  }

  .news-banner-shell {
    min-height: 24em;
    border-radius: 1.5em;
    padding: 3.4em 1.25em;
  }

  .news-banner-form {
    flex-direction: column;
    align-items: stretch;
  }

  .news-banner-form button {
    width: 100%;
  }
}

.sns.calmly {
  background: linear-gradient(180deg, var(--mint-pale), #d7efed);
  width: 100%;
  box-sizing: border-box;
  padding: 4.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2));
}

.sns-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2em;
  align-items: end;
  padding: 2.8em 2.6em;
  background: linear-gradient(135deg, rgba(191, 232, 230, 0.75), rgba(220, 238, 248, 0.9));
}

.sns-copy .ko-copy {
  margin-top: 1.2em;
  max-width: 26em;
}

.sns-handle {
  margin-bottom: 1.2em;
}

.membership.calmly {
  background: var(--page);
  width: 100%;
  box-sizing: border-box;
  padding: 4.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2));
  min-height: auto;
  display: block;
}

.membership-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 28em;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(247, 253, 253, 0.9), rgba(255, 244, 230, 0.85));
}

.membership-copy,
.membership-panel {
  padding: 3.2em 2.6em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.membership-panel {
  background: rgba(255, 255, 255, 0.45);
  justify-content: flex-end;
}

.cta-actions.stacked {
  flex-direction: column;
  align-items: flex-start;
}

.cta.calmly {
  background: linear-gradient(180deg, var(--cream), #fff4e6);
  width: 100%;
  box-sizing: border-box;
  padding: 4.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 5em;
  display: block;
  overflow: visible;
}

.cta-shell {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  padding: 2.6em 2.4em 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.cta-text {
  padding-bottom: 2.8em;
  max-width: 30em;
}

.cta-product {
  margin-top: 1.6em;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

.cta-mosaic {
  width: min(34em, 44%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55em;
  padding-bottom: 2.4em;
}

.cta-mosaic img {
  width: 100%;
  height: 12em;
  object-fit: cover;
  border-radius: 1em;
}

.brand-strip.calmly {
  padding: 5.5em max(var(--padding-web), calc((100% - var(--section-max)) / 2)) 5em;
  text-align: center;
  background: var(--page);
  border-top: 0;
}

.brand-strip h2 {
  font-size: clamp(2.1em, 4vw, 3.3em);
  font-weight: 600;
  line-height: 1.22;
  color: var(--heading-color);
  margin-bottom: 1.2em;
}

.brand-strip-logo {
  display: block;
  width: min(18em, 72vw);
  height: auto;
  margin: 0 auto;
}

.brand-strip p {
  letter-spacing: 0.12em;
}

.community-lede {
  max-width: 34em;
  margin: 1.2em 0 0;
}

.cta-actions {
  display: flex;
  gap: 1.25em;
  margin-top: 2.2em;
}

.carbon-media.is-product {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  background: var(--cream);
  padding: 2.4em;
}

.carbon-media.is-product img {
  width: auto;
  max-width: min(24em, 72%);
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.split-block .media.is-product {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 3em;
}

.split-block .media.is-product img {
  width: min(26em, 78%);
  height: auto;
  object-fit: contain;
}

.page-hero .product-shot {
  width: min(18em, 46vw);
  margin-top: 1em;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

@media (max-width: 991px) {
  .usecase-grid,
  .usecase-grid.soft-grid,
  .review-grid,
  .review-grid.soft-grid,
  .set-grid,
  .set-grid.soft-grid,
  .safety-grid,
  .safety-grid.soft-grid,
  .point-grid,
  .feature-cards.four,
  .sns,
  .sns-shell,
  .membership,
  .membership-shell,
  .founder-shell,
  .reviews-head,
  .cta-shell,
  .guide-item {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85em;
  }

  .cta-shell {
    flex-direction: column;
  }

  .cta-mosaic {
    width: 100%;
  }

  .community-tools {
    position: static;
    margin: 1.2em 0 0;
  }

  .philosophy .text-100 {
    font-size: 2.6em;
  }

  .hero-heading-2 {
    max-width: none;
    justify-self: start;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 479px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hero-actions .btn-inner {
    min-width: 0;
  }

  html[lang="ko"] .hero .text-100 {
    font-size: clamp(1.7em, 7.6vw, 2.1em);
    font-weight: 800;
  }

  html[lang="ko"] .text-60 {
    font-size: clamp(1.45em, 6.2vw, 1.85em);
  }

  html[lang="ko"] .problem-overlay .text-60 {
    font-size: clamp(1.35em, 5.8vw, 1.7em);
    white-space: normal;
  }

  html[lang="ko"] .capsule-question.text-60 {
    font-size: clamp(1.15em, 5vw, 1.45em);
    white-space: normal;
  }

  html[lang="ko"] .products-head .text-60 {
    font-size: clamp(1.45em, 6vw, 1.85em);
  }

  .problem-media.is-still img {
    width: min(18em, 78%);
  }

  .nav-cta {
    padding: 0.55em 0.8em;
    font-size: 0.72em;
  }

  .logo-header {
    width: 9.5em;
  }
}

/* Scroll text reveals */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] { transform: translate3d(0, 2em, 0); }
[data-reveal="left"] { transform: translate3d(-2.2em, 0, 0); }
[data-reveal="right"] { transform: translate3d(2.2em, 0, 0); }
[data-reveal="scale"] { transform: translate3d(0, 1.1em, 0) scale(0.94); }
[data-reveal="blur"] {
  transform: translate3d(0, 1.4em, 0);
  filter: blur(8px);
}
[data-reveal="soft"] {
  transform: translate3d(0, 1.6em, 0) scale(0.98);
  filter: blur(2px);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Mobile balance — keep after base section paddings so overrides win */
@media (max-width: 991px) {
  html,
  body,
  main,
  #site-header,
  #site-overlays,
  #site-footer {
    overflow-x: hidden;
    max-width: 100%;
  }

  .navbar,
  .nav-wrap {
    width: 100%;
    max-width: 100%;
  }

  .story-block {
    padding: 4.5em var(--padding-mobile) 5em;
  }

  .products {
    padding: 4.5em var(--padding-mobile) 0;
  }

  .school-clean-gap {
    height: 3.5em;
  }

  .about-fan {
    padding: 4em var(--padding-mobile) 5em;
  }

  .say-marquee {
    padding: 4.5em 0 4em;
    overflow: hidden;
  }

  .space-collab,
  .think {
    padding: 4.5em var(--padding-mobile) 5em;
  }

  .begin-services {
    padding-block: 4.5em 5em;
  }

  .open-clear-copy {
    padding: 3.2em var(--padding-mobile) 3.5em;
  }

  .practice-guide,
  .set-project {
    padding-top: 4.2em;
    padding-bottom: 4.5em;
  }

  .say-card {
    flex-basis: min(20em, calc(100vw - 2.5em));
  }
}
