:root {
  --navy: #03111f;
  --navy-2: #061b32;
  --ink: #111827;
  --muted: #5d6878;
  --gold: #d6a13d;
  --gold-2: #f1c46d;
  --line: #dfe5ec;
  --paper: #071727;
  --mist: #dce5ec;
  --mist-2: #edf2f5;
  --panel: #f7f6ef;
  --white: #fff;
  --shadow: 0 18px 38px rgba(4, 18, 34, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  scroll-snap-type: y proximity;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 420ms ease,
    transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  .reveal-section {
    transform: translateY(14px);
    transition:
      opacity 180ms ease,
      transform 220ms ease;
  }
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: keep-all;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(20px, 4vw, 50px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 10, 18, 0.88), rgba(3, 10, 18, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 315px;
  font-weight: 800;
}

.medal {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold-2);
  border: 1px solid rgba(214, 161, 61, 0.65);
  border-radius: 50%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex: 1;
  font-size: 15px;
  font-weight: 800;
}

.nav-cta {
  padding: 12px 18px;
  color: #150f05;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.social-login,
.hero-naver-login,
.hero-kakao-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #fff;
  background: #03c75a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(3, 199, 90, 0.18);
}

.naver-login,
.hero-naver-login {
  color: #fff;
  background: #03c75a;
}

.kakao-login,
.hero-kakao-login {
  color: #191600;
  background: #fee500;
  box-shadow: 0 12px 24px rgba(254, 229, 0, 0.16);
}

.hero-social-logins {
  display: none;
  gap: 8px;
  margin-top: 14px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, 650px) minmax(360px, 520px) minmax(210px, 260px);
  justify-content: center;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 104px clamp(22px, 5vw, 58px) 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 161, 61, 0.28), transparent 18%),
    linear-gradient(90deg, #020811 0%, #061729 48%, #090908 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 21%, rgba(255, 212, 138, 0.2), transparent 10%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.17), transparent 8%),
    radial-gradient(circle at 52% 46%, rgba(214, 161, 61, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(1, 9, 18, 0.98), rgba(1, 13, 26, 0.82) 45%, rgba(3, 9, 12, 0.9));
  opacity: 1;
}

.hero-glow {
  position: absolute;
  inset: auto 12% -140px 12%;
  height: 260px;
  background: radial-gradient(circle, rgba(214, 161, 61, 0.28), transparent 68%);
}

.hero-copy,
.hero-person,
.award-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 3.95vw, 54px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 strong {
  color: var(--gold-2);
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 40px;
  color: #e7edf4;
  font-size: 18px;
  font-weight: 650;
  overflow-wrap: break-word;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 700px;
  margin-bottom: 32px;
}

.hero-icons div {
  min-height: 128px;
  padding: 8px 14px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-icons span {
  display: block;
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
}

.hero-icons b,
.hero-icons small {
  display: block;
}

.hero-icons b {
  margin: 12px 0 5px;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-icons small {
  color: #c7d0dc;
  font-size: 10.5px;
  line-height: 1.45;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 900;
}

.btn.gold {
  color: #130e06;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 28px rgba(214, 161, 61, 0.22);
}

.btn.outline {
  min-width: 240px;
  color: var(--white);
  border: 1px solid var(--gold);
}

.hero-person {
  align-self: center;
}

.hero-person img,
.hero-video {
  width: min(500px, 100%);
  margin-inline: auto;
  border-radius: 6px;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.55));
}

.hero-video-wrap {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-video {
  display: block;
  height: clamp(360px, 44vw, 470px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  background: #020a12;
}

.sound-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: none;
  min-height: 42px;
  padding: 10px 14px;
  color: #071524;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.sound-toggle.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.award-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 360px;
  width: 100%;
  padding: 22px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 22, 40, 0.78), rgba(8, 18, 27, 0.85));
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: inset 0 0 34px rgba(214, 161, 61, 0.08);
}

.laurel {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 46px;
}

.award-card h2 {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1.28;
}

.award-card p {
  margin-bottom: 18px;
  color: #f3f6f8;
  font-weight: 700;
}

.award-card strong {
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 28px;
}

.award-card span {
  color: #dfe6ef;
}

.quick-guide {
  padding: 0 clamp(20px, 5vw, 58px);
  color: var(--white);
  background: linear-gradient(135deg, #03111f, #06213a);
}

.quick-guide-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-guide article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 116px;
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-guide span {
  grid-row: span 2;
  font-size: 32px;
  line-height: 1;
}

.quick-guide b {
  color: var(--white);
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
}

.quick-guide small {
  color: #c7d0dc;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

.section {
  padding: 54px clamp(20px, 5vw, 58px);
}

.light {
  background:
    radial-gradient(circle at 16% 10%, rgba(214, 161, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #14263a 0%, #dce5ec 58%, #edf2f5 100%);
}

.dark {
  color: var(--white);
  background: linear-gradient(135deg, #03111f, #06284a 52%, #03111f);
}

.section-title {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 8px;
  color: #102033;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.22;
}

.section-title p {
  color: #526274;
  font-size: 18px;
}

.dark .section-title h2 {
  color: var(--gold-2);
}

.dark .section-title p {
  color: #dfe8f0;
}

.signals {
  padding-top: 70px;
}

.signals .section-title h2 {
  color: #f2f5f7;
}

.signals .section-title p {
  color: #c9d5df;
}

.signals .signal-grid {
  margin-top: 34px;
}

.signals blockquote {
  color: #102033;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.signals + .program {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.signal-grid article {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  background: rgba(247, 246, 239, 0.94);
  border-radius: 12px;
  box-shadow: 0 22px 42px rgba(2, 14, 27, 0.22);
}

.signal-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,246,239,0.98) 0%, rgba(247,246,239,0.9) 43%, rgba(247,246,239,0.08) 100%);
  z-index: 1;
}

.signal-text {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 30px 16px 26px 28px;
}

.signal-text span {
  color: #0d2340;
  font-size: 34px;
}

.signal-text h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.signal-text p {
  color: #243142;
  font-weight: 700;
}

.signal-grid img {
  position: absolute;
  inset: auto 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signal-memory-card img {
  object-position: 72% center;
}

.signal-sleep-card img {
  object-position: 74% center;
}

.signal-mood-card img {
  object-position: 78% center;
}

blockquote {
  max-width: 980px;
  margin: 30px auto 0;
  color: #0d2035;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
}

blockquote::before,
blockquote::after {
  color: var(--gold);
  content: "”";
  padding: 0 12px;
}

.routine-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.routine-row article {
  text-align: center;
}

.routine-row img {
  width: 170px;
  height: 170px;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26);
}

.routine-row h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.routine-row p {
  color: #d5e3ef;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.coach {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(420px, 780px);
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #e3ebf1 0%, #edf2f5 46%, #dce5ec 100%);
}

.coach-image {
  align-self: center;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111c2b;
  border-radius: 8px;
  box-shadow: 0 24px 46px rgba(2, 14, 27, 0.24);
}

.coach-image img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center top;
}

.coach-copy {
  padding: 0;
}

.eyebrow {
  margin-bottom: 6px;
  color: #0c2440;
  font-size: 20px;
  font-weight: 900;
}

.coach-copy h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(36px, 5vw, 48px);
}

.coach-copy > p {
  max-width: 720px;
  color: #344154;
  font-size: 18px;
  font-weight: 650;
}

.coach-principles {
  max-width: 720px;
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.58);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(2, 14, 27, 0.08);
}

.coach-principles strong {
  display: block;
  margin-bottom: 8px;
  color: #102033;
  font-size: 18px;
  font-weight: 900;
}

.coach-principles p {
  margin: 0;
  color: #33465a;
  font-size: 16px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stats div {
  text-align: center;
}

.stats span {
  display: block;
  color: var(--gold);
  font-size: 34px;
}

.stats b {
  display: block;
  margin-top: 8px;
  color: #253348;
  font-size: 14px;
}

.family-card {
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

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

.compact {
  margin-bottom: 18px;
}

.recommend-wrap {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.recommend {
  padding-top: 46px;
  padding-bottom: 50px;
  background:
    radial-gradient(circle at 72% 24%, rgba(214, 161, 61, 0.18), transparent 22%),
    linear-gradient(180deg, #13283d 0%, #203950 42%, #d2dde5 100%);
}

.recommend .section-title {
  max-width: 1120px;
}

.recommend .section-title h2 {
  color: #f4c76d;
  font-size: clamp(30px, 3.1vw, 42px);
  word-break: keep-all;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.recommend .section-title .eyebrow {
  color: #c9d5df;
}

.recommend .section-title p:last-child {
  color: #edf4f8;
  font-weight: 800;
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(6, 23, 41, 0.82);
  border: 1px solid rgba(241, 196, 109, 0.18);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(2, 14, 27, 0.28);
}

.recommend-list article {
  display: flex;
  min-height: 148px;
  padding: 22px 20px 20px;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border-right: 1px solid rgba(241, 196, 109, 0.16);
}

.recommend-list article:last-child {
  border-right: 0;
}

.recommend-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 32px;
  color: #0a1727;
  background: var(--gold-2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 1000;
}

.recommend-list p {
  margin: 14px 0 0;
  color: #f5f8fb;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.48;
}

.limited {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 26px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 58%, rgba(214, 161, 61, 0.22), transparent 38%),
    linear-gradient(180deg, #08223c, #03111f);
  border: 1px solid rgba(241, 196, 109, 0.22);
  border-radius: 12px;
  box-shadow: 0 22px 42px rgba(2, 14, 27, 0.22);
}

.limited strong {
  color: var(--gold-2);
  font-size: 24px;
}

.limited p {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}

.limited span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 62px;
  color: var(--gold-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 40px;
  font-weight: 900;
}

.limited small {
  margin-top: 8px;
  color: #cbd6e2;
}

.limited a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 16px;
  color: #0a1727;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 8px;
  font-weight: 1000;
}

.consult {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  gap: 14px;
  padding: 36px clamp(20px, 5vw, 58px) 40px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, #03111f, #082544);
}

.faq {
  background: linear-gradient(180deg, #dfe9f1, #eef5f9);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.faq-list article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(22, 44, 66, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 36, 52, 0.08);
}

.faq-list h3 {
  margin: 0 0 10px;
  color: #07182c;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
}

.faq-list p {
  margin: 0;
  color: #334256;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.consult-intro h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.2;
}

.consult-intro p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #d8e1ec;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
  white-space: normal;
}

.consult-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.consult-points li {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 8px 12px;
  color: #f5d184;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 196, 109, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.consult-points li::before {
  content: "✓";
  flex: 0 0 auto;
}

.consult-video-wrap {
  position: relative;
  justify-self: center;
  width: min(560px, 100%);
  overflow: hidden;
  background: #061729;
  border: 1px solid rgba(241, 196, 109, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 46px rgba(2, 14, 27, 0.22);
}

.consult-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #061729;
}

.consult-sound-toggle {
  right: 16px;
  bottom: 16px;
}

.consult-choice {
  justify-self: center;
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 196, 109, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 46px rgba(2, 14, 27, 0.22);
}

.choice-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-buttons.single {
  grid-template-columns: minmax(240px, 320px);
  justify-content: center;
}

.choice-buttons button {
  display: grid;
  min-height: 62px;
  place-items: center;
  gap: 6px;
  padding: 12px;
  color: #f6d27d;
  background: #061729;
  border: 1px solid rgba(241, 196, 109, 0.34);
  border-radius: 10px;
  font: inherit;
  font-size: 18px;
  font-weight: 1000;
  cursor: pointer;
}

.choice-buttons button span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #061729;
  background: var(--gold-2);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 1000;
}

.choice-buttons button.is-active,
.choice-buttons button:hover {
  color: #071524;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

.choice-guide {
  margin: 0;
  color: #cbd6e2;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.choice-note {
  min-height: 20px;
  margin: -4px 0 0;
  color: #f6d27d;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.consult-panel {
  display: none;
  padding: 22px;
  color: var(--white);
  background: #061729;
  border: 1px solid rgba(241, 196, 109, 0.28);
  border-radius: 10px;
}

.consult-panel.is-active {
  display: grid;
}

.consult-panel > strong {
  color: var(--gold-2);
  font-size: 24px;
}

.consult-panel > p {
  margin: 8px 0 18px;
  color: #dce6ee;
  font-weight: 750;
}

.consult-form {
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  padding: 22px;
  color: #172033;
  background: var(--white);
  border-radius: 8px;
}

.consult-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 900;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.consult-form textarea {
  resize: vertical;
}

.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-group legend {
  padding: 0 4px;
  color: #172033;
  font-size: 14px;
  font-weight: 900;
}

.check-group label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: #172033;
  background: #f3f6f8;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.check-group input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--gold);
}

.submit,
#submitComplete,
#formNote {
  grid-column: 1 / -1;
}

.submit {
  min-height: 48px;
  color: #130e06;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

#formNote {
  min-height: 20px;
  margin: 0;
  color: #657286;
  font-size: 13px;
}

#formNote.is-success {
  color: #12664f;
  font-weight: 900;
}

.submit-complete {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid rgba(28, 121, 91, 0.22);
  border-radius: 10px;
  background: linear-gradient(135deg, #f0fff8, #ffffff);
  color: #0f513f;
  text-align: center;
  box-shadow: 0 14px 30px rgba(13, 78, 57, 0.1);
}

.submit-complete[hidden] {
  display: none;
}

.submit-complete strong {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
}

.submit-complete span {
  font-size: clamp(13px, 3.2vw, 16px);
  font-weight: 800;
  color: #326655;
}

.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 58px) 28px;
  color: #aeb9c5;
  background: #030b14;
  font-size: 12px;
  text-align: center;
}

.legal p {
  margin: 0;
}

.sticky-mobile {
  display: none;
}

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

  .hero {
    grid-template-columns: 1fr 0.9fr;
    justify-content: stretch;
  }

  .award-card {
    grid-column: 1 / -1;
    min-height: auto;
    display: flex;
    justify-content: center;
    gap: 18px;
  }

  .signal-grid,
  .coach,
  .consult,
  .recommend-wrap {
    grid-template-columns: 1fr;
  }

  .consult-intro p {
    white-space: normal;
  }

  .routine-row,
  .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-guide-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routine-row p {
    white-space: normal;
  }

  .family-card {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 72px;
  }

  .topbar {
    min-height: 66px;
    padding: 10px 14px;
    background: rgba(3, 10, 18, 0.92);
    backdrop-filter: blur(16px);
  }

  .brand {
    min-width: 0;
    max-width: 100%;
    font-size: clamp(13px, 3.2vw, 15px);
    line-height: 1.25;
  }

  .medal {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .nav-cta,
  .social-login {
    display: none;
  }

  .hero {
    display: flex;
    flex-wrap: nowrap;
    min-height: auto;
    align-items: center;
    gap: 6px;
    padding: 78px 10px 18px;
  }

  .hero-copy {
    flex: 0 0 34%;
  }

  .hero-video-wrap {
    flex: 0 0 31%;
  }

  .award-card {
    flex: 0 0 23%;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.18;
  }

  .hero-copy > p {
    max-width: none;
    margin-bottom: 10px;
    font-size: clamp(7.5px, 2.15vw, 9px);
    line-height: 1.55;
  }

  .hero-actions {
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 2px;
  }

  .btn {
    width: 100%;
    min-height: 28px;
    padding: 7px 6px;
    border-radius: 5px;
    font-size: clamp(8px, 2.25vw, 9.5px);
    text-align: center;
  }

  .btn.outline {
    min-width: 0;
  }

  .hero-person {
    width: 100%;
  }

  .hero-video-wrap {
    align-self: center;
    width: 100%;
    margin-top: 0;
  }

  .hero-video {
    width: 100%;
    max-width: 100%;
    height: clamp(158px, 45vw, 210px);
    aspect-ratio: auto;
    object-position: center 25%;
    border-radius: 6px;
  }

  .sound-toggle {
    right: auto;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    min-height: 24px;
    padding: 5px 8px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-icons,
  .consult-form,
  .consult-points,
  .legal {
    grid-template-columns: 1fr;
  }

  .quick-guide-inner,
  .routine-row,
  .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-buttons {
    grid-template-columns: 1fr;
  }

  .quick-guide {
    padding: 0 16px;
  }

  .quick-guide article {
    min-height: 104px;
    padding: 15px 8px;
  }

  .quick-guide span {
    font-size: 24px;
  }

  .quick-guide b {
    font-size: 15px;
    line-height: 1.25;
  }

  .quick-guide small {
    font-size: 12px;
    line-height: 1.35;
  }

  .quick-guide b,
  .quick-guide small {
    white-space: normal;
  }

  .hero-icons div {
    min-height: auto;
    padding: 12px 0 12px 14px;
  }

  .hero-icons b,
  .hero-icons small {
    white-space: normal;
  }

  .award-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: auto;
    min-height: clamp(158px, 45vw, 210px);
    align-items: center;
    justify-items: center;
    gap: 3px;
    padding: 8px 4px;
    text-align: center;
    border-radius: 7px;
    overflow: hidden;
  }

  .award-card .laurel {
    margin: 0;
    font-size: 20px;
  }

  .award-card h2 {
    margin: 0;
    font-size: clamp(9px, 2.55vw, 12px);
    line-height: 1.28;
  }

  .award-card p {
    margin: 0;
    font-size: clamp(7px, 2vw, 8.5px);
    line-height: 1.35;
  }

  .award-card strong {
    margin: 0;
    font-size: clamp(12px, 3.3vw, 16px);
  }

  .award-card span {
    font-size: clamp(7px, 2vw, 9px);
  }

  .section {
    padding: 44px 16px;
  }

  .section-title h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.18;
  }

  .section-title p {
    font-size: 15px;
  }

  .signal-grid {
    gap: 16px;
  }

  .signal-grid article {
    min-height: 300px;
    border-radius: 10px;
  }

  .signal-text {
    width: 58%;
    padding: 20px 8px 20px 18px;
  }

  .signal-text h3 {
    font-size: 18px;
  }

  .signal-text p {
    font-size: 14px;
  }

  blockquote {
    font-size: 19px;
  }

  .routine-row {
    gap: 18px 12px;
  }

  .routine-row article {
    min-width: 0;
  }

  .routine-row img {
    width: min(130px, 38vw);
    height: min(130px, 38vw);
  }

  .routine-row h3 {
    font-size: 17px;
    white-space: normal;
  }

  .routine-row p {
    font-size: 13px;
    line-height: 1.45;
  }

  .coach {
    gap: 0;
  }

  .coach-image {
    min-height: 300px;
  }

  .coach-copy {
    padding: 28px 18px;
  }

  .coach-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommend-wrap {
    gap: 18px;
  }

  .recommend-list article {
    min-height: 190px;
    padding: 22px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recommend-list p {
    font-size: 15px;
    line-height: 1.55;
  }

  .consult {
    gap: 16px;
    padding: 50px 16px 96px;
  }

  .consult-intro h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .consult-intro p {
    font-size: 15px;
    line-height: 1.6;
  }

  .consult-video-wrap,
  .consult-choice {
    width: min(100%, 430px);
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list article {
    padding: 20px;
  }

  .consult-points {
    width: min(100%, 430px);
  }

  .consult-choice {
    padding: 14px;
  }

  .choice-buttons.single {
    grid-template-columns: 1fr;
  }

  .choice-buttons button {
    min-height: 58px;
    font-size: 17px;
  }

  .consult-panel {
    padding: 14px;
  }

  .consult-form {
    padding: 16px;
  }

  .check-group {
    gap: 7px;
  }

  .sticky-mobile {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .sticky-mobile.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(115%);
  }

  .sticky-mobile a {
    display: grid;
    place-items: center;
    min-height: 52px;
    color: #08111d;
    background: var(--gold-2);
    font-weight: 900;
  }

  .sticky-mobile a:first-child {
    color: #08111d;
    background: var(--gold-2);
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 12.5px;
  }

  .medal {
    width: 34px;
    height: 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.76fr) minmax(0, 0.72fr);
    gap: 6px;
    padding: 72px 8px 16px;
  }

  .hero h1 {
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .hero-copy > p {
    font-size: clamp(8px, 2.35vw, 9.2px);
  }

  .btn {
    min-height: 26px;
    font-size: clamp(7.5px, 2.2vw, 9px);
  }

  .hero-video,
  .award-card {
    height: clamp(148px, 43vw, 190px);
    min-height: 0;
  }

  .quick-guide-inner,
  .routine-row,
  .recommend-list {
    grid-template-columns: 1fr 1fr;
  }

  .quick-guide article {
    min-height: 96px;
  }

  .quick-guide b {
    font-size: 14px;
  }

  .quick-guide small {
    font-size: 12px;
  }

  .signal-text {
    width: 61%;
  }

  .signal-grid article {
    min-height: 270px;
  }

  .recommend-list article {
    min-height: 178px;
  }

  .recommend-list p {
    font-size: 14px;
  }
}

/* Vertical-first premium layout: one emotional flow for desktop and mobile. */
body {
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 196, 109, 0.14), transparent 24%),
    linear-gradient(90deg, #010811 0%, #061a2f 50%, #010811 100%);
}

.topbar {
  left: 50%;
  width: min(100%, 620px);
  transform: translateX(-50%);
  justify-content: center;
  padding: 12px 18px;
  background: rgba(3, 10, 18, 0.9);
  border-bottom: 1px solid rgba(241, 196, 109, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  justify-content: center;
  font-size: clamp(14px, 2.6vw, 18px);
}

.medal {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.nav,
.nav-cta,
.social-login {
  display: none;
}

.hero-social-logins {
  display: flex;
  flex-wrap: wrap;
}

.hero-naver-login,
.hero-kakao-login {
  display: inline-flex;
  min-height: 34px;
  padding: 8px 12px;
  font-size: clamp(11px, 2.6vw, 13px);
}

main {
  width: min(100%, 620px);
  margin: 0 auto;
  overflow: hidden;
  background: #03111f;
  box-shadow: 0 0 54px rgba(0, 0, 0, 0.28);
}

.snap-section {
  scroll-snap-align: none;
}

.hero {
  display: flex;
  min-height: auto;
  flex-direction: column;
  gap: 18px;
  padding: 86px 18px 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(241, 196, 109, 0.18), transparent 26%),
    linear-gradient(180deg, #020912 0%, #06192d 58%, #03111f 100%);
}

.hero-copy {
  order: 2;
  flex: 0 1 auto;
  width: 100%;
}

.hero-video-wrap {
  order: 1;
  flex: 0 1 auto;
  width: 100%;
}

.award-card {
  order: 3;
  flex: 0 1 auto;
}

.hero h1 {
  max-width: 470px;
  margin: 0 auto 14px;
  font-size: clamp(28px, 7.2vw, 42px);
  line-height: 1.16;
}

.hero-copy > p {
  max-width: 92%;
  margin: 0 auto 22px;
  font-size: clamp(13px, 3.45vw, 16px);
  line-height: 1.68;
  text-wrap: balance;
}

.hero-actions {
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 54px;
  margin: 0 auto;
  padding: 14px 18px;
  color: #f3cb75;
  background: rgba(241, 196, 109, 0.08);
  border: 1px solid rgba(241, 196, 109, 0.32);
  border-radius: 12px;
  font-size: clamp(14px, 3.4vw, 17px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  word-break: keep-all;
}

.scroll-cue::after {
  content: "↓";
  margin-left: 8px;
  color: var(--gold-2);
  font-size: 1.1em;
}

.btn {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  font-size: clamp(15px, 4vw, 18px);
}

.btn.outline {
  min-width: 0;
}

.hero-video {
  width: 100%;
  height: clamp(300px, 72vw, 420px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 14px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.45));
}

.sound-toggle {
  right: 16px;
  bottom: 16px;
  min-height: 38px;
  padding: 8px 13px;
  font-size: 13px;
}

.award-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  width: min(100%, 360px);
  align-items: center;
  justify-items: center;
  gap: 9px;
  margin-inline: auto;
  padding: 24px 20px 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 196, 109, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(7, 22, 40, 0.9), rgba(8, 18, 27, 0.96));
  border-radius: 12px;
}

.award-card .laurel {
  margin: 0;
  font-size: 42px;
}

.award-card h2,
.award-card p,
.award-card strong {
  margin: 0;
}

.award-card h2 {
  max-width: 100%;
  font-size: clamp(18px, 4.7vw, 24px);
  line-height: 1.25;
  white-space: nowrap;
}

.award-card p {
  max-width: 260px;
  font-size: clamp(13px, 3.4vw, 16px);
  line-height: 1.45;
}

.award-card strong {
  width: min(180px, 70%);
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(241, 196, 109, 0.32);
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.15;
}

.award-card span {
  font-size: clamp(12px, 3.3vw, 15px);
}

.quick-guide,
.section,
.consult,
.legal {
  width: 100%;
}

.quick-guide {
  padding: 0 18px 32px;
  background: #03111f;
}

.quick-guide-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 14px;
  overflow: hidden;
}

.quick-guide article {
  grid-template-columns: 1fr;
  min-height: 120px;
  justify-items: center;
  gap: 8px;
  padding: 18px 8px;
  text-align: center;
}

.quick-guide span {
  grid-row: auto;
  font-size: 28px;
}

.quick-guide b {
  font-size: clamp(13px, 3.4vw, 15px);
  white-space: nowrap;
}

.quick-guide small {
  font-size: clamp(8.8px, 2.25vw, 10.5px);
  line-height: 1.35;
  white-space: nowrap;
  word-break: keep-all;
}

.section {
  padding: 48px 18px;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(28px, 7.8vw, 42px);
  line-height: 1.18;
}

.section-title p {
  font-size: clamp(15px, 4vw, 18px);
}

.signal-grid,
.routine-row,
.coach,
.recommend-wrap,
.recommend-list,
.consult {
  grid-template-columns: 1fr;
}

.signal-grid {
  gap: 16px;
}

.signal-grid article {
  min-height: 300px;
  border-radius: 14px;
}

.signal-text {
  width: 58%;
  padding: 24px 8px 24px 20px;
}

.signal-text h3 {
  font-size: clamp(20px, 5.3vw, 26px);
}

.signal-text p {
  font-size: clamp(14px, 3.8vw, 17px);
}

.signals blockquote {
  max-width: 100%;
  font-size: clamp(11px, 2.65vw, 16px);
  line-height: 1.35;
  white-space: nowrap;
  word-break: keep-all;
}

.routine-row {
  gap: 14px;
}

.routine-row article {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-width: 0;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.routine-row img {
  grid-row: span 2;
  width: 92px;
  height: 92px;
}

.routine-row h3 {
  margin: 0;
  font-size: clamp(18px, 4.8vw, 22px);
  white-space: normal;
}

.routine-row p {
  margin: 0;
  font-size: clamp(13px, 3.5vw, 16px);
  white-space: normal;
}

.coach {
  gap: 0;
}

.coach-image {
  min-height: 360px;
}

.coach-copy {
  padding: 34px 22px;
}

.coach-copy h2 {
  font-size: clamp(38px, 10vw, 56px);
}

.coach-copy > p,
.coach-principles p {
  font-size: clamp(15px, 3.8vw, 18px);
}

.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recommend-wrap {
  gap: 18px;
}

.recommend-list article {
  min-height: auto;
  padding: 22px 18px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.recommend-list p {
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.55;
}

.limited {
  padding: 24px 18px;
}

.consult {
  gap: 16px;
  padding: 54px 18px 98px;
}

.consult-intro h2 {
  font-size: clamp(34px, 9vw, 48px);
}

.consult-intro p {
  font-size: clamp(15px, 4vw, 18px);
}

.consult-video-wrap,
.consult-choice,
.consult-points {
  width: 100%;
}

.consult-video-wrap {
  max-width: 520px;
}

.consult-points {
  grid-template-columns: 1fr;
}

.choice-buttons.single {
  grid-template-columns: 1fr;
}

.consult-form {
  grid-template-columns: 1fr;
}

.legal {
  grid-template-columns: 1fr;
  padding: 22px 18px;
}

@media (min-width: 701px) {
  .sticky-mobile {
    display: none;
  }
}

@media (max-width: 430px) {
  .topbar {
    width: 100%;
    padding: 10px 14px;
  }

  main {
    width: 100%;
  }

  .hero {
    padding: 78px 16px 30px;
  }

  .hero-video {
    height: clamp(280px, 78vw, 360px);
  }

  .award-card {
    padding: 15px 16px;
  }

  .signal-text {
    width: 62%;
  }

  .signal-grid article {
    min-height: 280px;
  }
}

html,
body,
main {
  max-width: 100vw;
  overflow-x: hidden;
}

.hero,
.hero-copy,
.hero-copy > p {
  min-width: 0;
}

.hero-copy > p {
  width: min(310px, calc(100vw - 64px));
  max-width: 100%;
  overflow-wrap: anywhere;
}

.award-card {
  display: none !important;
}

.consult-points {
  display: none !important;
}

@media (max-width: 700px) {
  #consult .choice-guide {
    font-size: clamp(10px, 2.55vw, 12px);
    line-height: 1.35;
    white-space: nowrap;
    word-break: keep-all;
  }

  #consult .consult-intro h2 {
    font-size: clamp(20px, 4.8vw, 26px);
    line-height: 1.2;
    white-space: nowrap;
    word-break: keep-all;
  }

  #consult .consult-intro p {
    font-size: clamp(12.5px, 3.1vw, 14px);
    line-height: 1.6;
    word-break: keep-all;
  }

  #signals .section-title h2 {
    font-size: clamp(18px, 4.45vw, 24px);
    line-height: 1.18;
    white-space: nowrap;
    word-break: keep-all;
  }

  #signals .section-title p {
    font-size: clamp(13px, 3.3vw, 15px);
  }

  #coach {
    padding: 0;
  }

  #coach .coach-image {
    min-height: 250px;
    max-height: 280px;
  }

  #coach .coach-image img {
    object-position: center 18%;
  }

  #coach .coach-copy {
    padding: 30px 20px 34px;
  }

  #coach .eyebrow {
    font-size: 14px;
  }

  #coach .coach-copy h2 {
    font-size: clamp(32px, 8.1vw, 42px);
    line-height: 1.12;
  }

  #coach .coach-copy > p {
    font-size: clamp(13px, 3.25vw, 15px);
    line-height: 1.75;
  }

  #coach .coach-principles {
    padding: 22px 20px;
    border-radius: 12px;
  }

  #coach .coach-principles strong {
    font-size: clamp(18px, 4.6vw, 22px);
  }

  #coach .coach-principles p {
    font-size: clamp(13px, 3.25vw, 15px);
    line-height: 1.72;
  }

  #coach .stats {
    gap: 10px;
    margin-top: 18px;
  }

  #coach .stats div {
    min-height: 96px;
    padding: 14px 8px;
  }

  #coach .stats span {
    font-size: 26px;
  }

  #coach .stats b {
    font-size: 12px;
    line-height: 1.35;
  }

  #program .section-title h2 {
    font-size: clamp(16px, 4.2vw, 23px);
    line-height: 1.18;
    white-space: nowrap;
    word-break: keep-all;
  }

  #program .section-title p {
    font-size: clamp(12.5px, 3.1vw, 15px);
  }

  #program .routine-row {
    gap: 12px;
  }

  #program .routine-row article {
    min-height: 116px;
    padding: 14px 16px;
    background: rgba(6, 23, 41, 0.58);
    border: 1px solid rgba(241, 196, 109, 0.18);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  #program .routine-row img {
    width: 82px;
    height: 82px;
    border-width: 2px;
  }

  #program .routine-row h3 {
    font-size: clamp(17px, 4.35vw, 20px);
    line-height: 1.25;
  }

  #program .routine-row p {
    font-size: clamp(11.5px, 2.95vw, 13.5px);
    line-height: 1.45;
    word-break: keep-all;
  }

  #consult-signal .section-title h2 {
    font-size: clamp(18px, 4.35vw, 24px);
    line-height: 1.22;
    white-space: nowrap;
    word-break: keep-all;
  }

  #consult-signal .section-title p:last-child {
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.55;
    word-break: keep-all;
  }

  .recommend-list article {
    padding: 20px 16px;
  }

  .recommend-list p {
    font-size: clamp(10.5px, 2.75vw, 12.5px);
    line-height: 1.35;
    white-space: nowrap;
    word-break: keep-all;
  }
}
