/* ============================================================
   K-마켓 인사이트 클럽 · Landing v2
   Fonts: Pretendard (body) + Gmarket Sans (display) + Space Grotesk (mono-ish numerals)
   Palette: #FF4655 / #FF8C42 / #1A1A2E
============================================================ */

:root {
  --c-red: #FF4655;
  --c-orange: #FF8C42;
  --c-blue: #8DA0FF;
  --c-dark: #0E0E1A;
  --c-dark-2: #0A0A14;
  --c-dark-3: #06060c;
  --c-line: rgba(255, 255, 255, 0.07);
  --c-line-2: rgba(255, 255, 255, 0.14);
  --c-text: #f4f4f7;
  --c-text-dim: #b5b5c5;
  --c-text-muted: #7c7c92;
  --grad: linear-gradient(120deg, #FF4655 0%, #FF8C42 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,70,85,.18), rgba(255,140,66,.10));
  --radius: 20px;
  --easing: cubic-bezier(.22,.71,.18,1);
}

/* ===== Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', 'Pretendard', -apple-system, system-ui, sans-serif;
  background: var(--c-dark);
  color: var(--c-text);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* helpers */
.t-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.t-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-red);
  font-style: italic;
}
/* 文字按字符 split 后，每个 .char 都是 inline-block，
   必须自己继承渐变 / 描边，否则会变成透明字 → 看不见 */
.t-grad .char {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-outline .char {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-red);
}

/* ===== Noise overlay ===== */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image:
    repeating-conic-gradient(rgba(255,255,255,.6) 0deg 3deg, transparent 3deg 6deg);
  background-size: 4px 4px;
  animation: noiseShift 8s steps(8) infinite;
}
@keyframes noiseShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-8px, 4px); }
  50% { transform: translate(6px, -2px); }
  75% { transform: translate(-4px, 8px); }
  100% { transform: translate(0,0); }
}

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  z-index: 999;
  box-shadow: 0 0 14px rgba(255, 70, 85, 0.7);
  transition: width .1s linear;
}

/* ===== Ticker ===== */
.ticker {
  background: linear-gradient(90deg, #06060c, #14142a, #06060c);
  border-bottom: 1px solid var(--c-line);
  position: relative;
  z-index: 50;
  overflow: hidden;
}
.ticker__row {
  padding: 10px 0;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: tickerSlide 36s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: 'Space Grotesk', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker__item em {
  font-style: normal;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: 11.5px;
}
.ticker__item.up { color: #ff8a78; }
.ticker__item.up em { background: rgba(255, 70, 85, .15); color: #ff8a78; }
.ticker__item.down { color: var(--c-blue); }
.ticker__item.down em { background: rgba(141, 160, 255, .15); color: var(--c-blue); }
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* (Logo / brand mark used in footer & corners) */
.logo-mark {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(255, 70, 85, 0.45);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shineSlide 3s 1s ease-in-out infinite;
}
@keyframes shineSlide {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .35s var(--easing), box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.btn__icon {
  width: 22px; height: 22px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 2px;
  flex-shrink: 0;
}
.btn--primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 70, 85, 0.4);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--easing);
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 70, 85, 0.6); }
.btn--ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-line-2);
  color: var(--c-text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); border-color: var(--c-red); }
.btn--xl { padding: 18px 36px; font-size: 16px; border-radius: 14px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 28px 90px;
  overflow: hidden;
  background: var(--c-dark);
}
.hero__aurora {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(35% 50% at 18% 25%, rgba(255, 70, 85, 0.45), transparent 60%),
    radial-gradient(40% 55% at 78% 40%, rgba(255, 140, 66, 0.35), transparent 60%),
    radial-gradient(45% 60% at 50% 90%, rgba(141, 160, 255, 0.18), transparent 60%);
  filter: blur(60px);
  animation: auroraShift 18s ease-in-out infinite;
  z-index: 0;
}
@keyframes auroraShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 70, 85, 0.1);
  border: 1px solid rgba(255, 70, 85, 0.35);
  color: #ffc8c8;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.hero__badge em { color: rgba(255,255,255,.3); font-style: normal; }
.hero__badge .dot {
  width: 7px; height: 7px;
  background: #ff4655; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 70, 85, 0.7);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,70,85,.7); }
  50% { box-shadow: 0 0 0 12px rgba(255,70,85,0); }
}

.hero__title {
  font-family: 'GmarketSans', 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-top: 22px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > * { display: inline-block; }
.hero__title .t-grad { font-weight: 700; }

.hero__sub {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--c-text-dim);
  margin-top: 24px;
  max-width: 540px;
  line-height: 1.75;
}
.hero__sub b { color: var(--c-text); font-weight: 700; }

.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--c-line);
  position: relative;
}
.hero__stats::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; width: 60px; height: 2px;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(255, 70, 85, .8);
}
.stat__num {
  font-family: 'Space Grotesk', monospace;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  background: linear-gradient(180deg, #fff, #ffcdc7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 12.5px;
  color: var(--c-text-muted);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* hero visual */
.hero__visual {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.hero__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--c-line-2), inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .6s var(--easing);
  transform-style: preserve-3d;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(10,10,20,.85) 100%);
  pointer-events: none;
}
.hero__chart {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 40%;
  pointer-events: none;
}
.hero__chart .chart-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2.4s 0.4s var(--easing) forwards;
  filter: drop-shadow(0 0 6px rgba(255, 70, 85, 0.6));
}
.hero__chart .chart-fill { opacity: 0; animation: fadeIn 1.6s 2s forwards; }
.hero__chart .candles rect { transform-origin: bottom; transform: scaleY(0); animation: candleGrow .6s var(--easing) forwards; }
.hero__chart .candles rect:nth-child(1) { animation-delay: 2.4s; }
.hero__chart .candles rect:nth-child(2) { animation-delay: 2.55s; }
.hero__chart .candles rect:nth-child(3) { animation-delay: 2.7s; }
.hero__chart .candles rect:nth-child(4) { animation-delay: 2.85s; }
.hero__chart .candles rect:nth-child(5) { animation-delay: 3s; }
.hero__chart .candles rect:nth-child(6) { animation-delay: 3.15s; }
.hero__chart .candles rect:nth-child(7) { animation-delay: 3.3s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes candleGrow { to { transform: scaleY(1); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero__chip {
  position: absolute;
  background: rgba(10, 10, 20, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--c-line-2);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex; gap: 9px; align-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
  animation: floatChip 4.5s ease-in-out infinite;
}
.hero__chip em {
  font-family: 'Space Grotesk', monospace;
  font-style: normal;
  font-weight: 700;
  color: var(--c-red);
  padding-left: 6px;
  border-left: 1px solid var(--c-line-2);
  margin-left: 2px;
}
.hero__chip i { color: var(--c-orange); }
.chip--top { top: 24px; left: -28px; }
.chip--bottom { bottom: 90px; right: -20px; animation-delay: -2s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__rings {
  position: absolute;
  inset: -50px;
  pointer-events: none;
}
.hero__rings::before, .hero__rings::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 70, 85, 0.25);
  animation: spin 30s linear infinite;
}
.hero__rings::after {
  inset: 36px;
  border-color: rgba(255, 140, 66, 0.22);
  animation-duration: 22s;
  animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* corner markers */
.corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--c-red);
  pointer-events: none;
}
.corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* rotating sticker */
.hero__sticker {
  position: absolute;
  bottom: -48px; right: -48px;
  width: 130px; height: 130px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(255, 70, 85, .5);
  animation: spin 16s linear infinite;
  z-index: 2;
}
.hero__sticker-text {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  font-family: 'Space Grotesk', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: white;
  text-align: center;
  padding: 12px;
  text-transform: uppercase;
}
.hero__sticker em { font-style: normal; opacity: .5; }
.hero__sticker::after {
  content: '★';
  font-size: 30px;
  color: white;
  filter: drop-shadow(0 0 8px rgba(0,0,0,.3));
}

.hero__scroll {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  color: var(--c-text-muted);
  z-index: 5;
}
.hero__scroll-bar {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(180deg, var(--c-red), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute;
  width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, white);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.hero__scroll-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

/* ===== Section Heads ===== */
.section-head {
  text-align: center;
  margin: 0 auto 70px;
  max-width: 800px;
  padding: 0 20px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 70, 85, 0.08);
  color: #ffc8c8;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,70,85,.28);
  backdrop-filter: blur(8px);
}
.section-title {
  font-family: 'GmarketSans', 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.section-title span { display: block; overflow: hidden; }
.section-title .t-grad { display: inline; font-weight: 700; }
.section-sub {
  color: var(--c-text-dim);
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}

/* ===== About cards ===== */
.about {
  padding: 130px 28px;
  position: relative;
}
.about__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  padding: 28px 26px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  transition: transform .5s var(--easing), border-color .3s, box-shadow .3s;
  overflow: hidden;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s;
}
.card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 70, 85, .14), transparent 40%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.card:hover {
  border-color: rgba(255, 70, 85, .5);
  box-shadow: 0 28px 60px rgba(0,0,0,.45);
}
.card:hover::before, .card:hover::after { opacity: 1; }
.card--featured {
  background: linear-gradient(180deg, rgba(255, 70, 85, .15), rgba(255, 140, 66, .04));
  border-color: rgba(255, 70, 85, .4);
}
.card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.card__num {
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.18em;
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
  box-shadow: 0 10px 22px rgba(255, 70, 85, 0.4);
  position: relative;
}
.card h3 {
  font-family: 'GmarketSans', 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.card p {
  color: var(--c-text-dim);
  font-size: 13.5px;
  line-height: 1.65;
  flex-grow: 1;
}
.card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.card__tag {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-line-2);
  color: var(--c-text-dim);
}
.card__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .35s var(--easing);
  font-size: 12px;
}
.card:hover .card__arrow {
  background: var(--grad);
  transform: rotate(-45deg);
}

/* ===== Feature sections ===== */
.feature {
  padding: 110px 28px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 80px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.feature--right .feature__visual { order: 2; }

.feature__copy h2 {
  font-family: 'GmarketSans', 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-top: 16px;
  margin-bottom: 18px;
}
.feature__copy h2 span { display: block; overflow: hidden; }
.feature__copy h2 .t-grad { display: inline; font-weight: 700; }
.feature__copy p { color: var(--c-text-dim); font-size: 15.5px; line-height: 1.75; }

.check-list { margin: 26px 0 32px; }
.check-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 14.5px;
  font-weight: 500;
}
.check-list li:last-child { border-bottom: 0; }
.check-list .chk {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 70, 85, 0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-red);
  font-size: 11px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 70, 85, 0.4);
}

/* float-frame */
.float-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px var(--c-line-2);
  animation: floatUp 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.float-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.float-frame--rotate { transform: rotate(-2deg); animation-name: floatUpRotate; }
.float-frame__badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(10, 10, 20, .85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255, 70, 85, 0.4);
}
.dot--red {
  width: 7px; height: 7px;
  background: var(--c-red);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
.float-frame__caption {
  position: absolute;
  bottom: -28px; right: 20px;
  background: rgba(10, 10, 20, .92);
  border: 1px solid var(--c-line-2);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  font-family: 'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.float-frame__caption em {
  color: var(--c-red);
  font-style: normal;
  font-family: 'Space Grotesk', monospace;
}
.float-frame__caption small {
  display: block;
  color: var(--c-text-muted);
  font-family: 'Pretendard', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 2px;
}

.ping-card {
  position: absolute;
  top: 24px; right: -30px;
  background: rgba(10, 10, 20, .92);
  border: 1px solid rgba(255, 70, 85, .4);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .5);
  font-size: 13.5px;
  animation: floatChip 5s -1s ease-in-out infinite;
}
.ping-card strong { display: block; font-weight: 700; }
.ping-card small {
  color: var(--c-text-muted);
  font-family: 'Space Grotesk', monospace;
  font-size: 10.5px;
}
.ping-card__dot {
  width: 10px; height: 10px;
  background: var(--c-red); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 70, 85, .8);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatUpRotate {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}

.bullet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 32px;
}
.bullet {
  padding: 20px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  transition: all .35s var(--easing);
  position: relative;
  overflow: hidden;
}
.bullet::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .35s;
}
.bullet:hover { transform: translateY(-6px); border-color: rgba(255, 70, 85, .45); }
.bullet:hover::after { opacity: 1; }
.bullet > * { position: relative; z-index: 1; }
.bullet i { font-size: 20px; color: var(--c-orange); }
.bullet h4 {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.bullet p { color: var(--c-text-muted); font-size: 12.5px; margin-top: 4px; }

/* ===== Archive ===== */
.archive {
  padding: 120px 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 80% 50%, rgba(255, 70, 85, .1), transparent 60%),
    var(--c-dark-2);
}
.archive__marquee {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%) rotate(-4deg);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  padding: 16px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 70, 85, 0.06), transparent);
  border-top: 1px solid rgba(255, 70, 85, 0.1);
  border-bottom: 1px solid rgba(255, 70, 85, 0.1);
}
.archive__marquee-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: tickerSlide 30s linear infinite;
  font-family: 'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 9vw, 130px);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 70, 85, 0.5);
}
.archive__marquee-track i {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-red);
  align-self: center;
  flex-shrink: 0;
}

.archive__wrap {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.archive__copy h2 {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.18;
  margin-top: 16px;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.archive__copy h2 span { display: block; overflow: hidden; }
.archive__copy h2 .t-grad { display: inline; font-weight: 700; }
.archive__copy p { color: var(--c-text-dim); font-size: 15.5px; line-height: 1.75; }
.archive__visual { position: relative; transform-style: preserve-3d; }
.archive__img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px var(--c-line-2);
  transition: transform .6s var(--easing);
}
.archive__sticker {
  position: absolute;
  bottom: -36px; left: -36px;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(255, 70, 85, .5);
}
.archive__sticker-circle {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: spin 14s linear infinite;
}
.archive__sticker-num {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: white;
  letter-spacing: -0.04em;
}
.archive__sticker-num sup {
  font-size: 16px;
  font-weight: 500;
  vertical-align: super;
  margin-left: 2px;
}

/* ===== Voice / Slider ===== */
.voice {
  padding: 120px 28px;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255, 140, 66, .06), transparent 60%),
    var(--c-dark);
  overflow: hidden;
}
.voice__slider {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.voice__track {
  display: flex;
  gap: 24px;
  transition: transform .65s var(--easing);
  will-change: transform;
}
.phone {
  flex: 0 0 calc((100% - 72px) / 4);
  background: linear-gradient(180deg, #1d1d33, #11111f);
  border: 1px solid var(--c-line-2);
  border-radius: 36px;
  padding: 12px 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  transition: transform .4s var(--easing), border-color .35s;
}
.phone:hover { transform: translateY(-12px); border-color: rgba(255, 70, 85, .4); }
.phone__notch {
  width: 86px; height: 16px;
  background: #06060c;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
  position: relative;
}
.phone__notch::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3a3a55;
  right: 16px; top: 5px;
}
.phone__screen {
  background: #06060c;
  border-radius: 26px;
  padding: 18px 16px 22px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone__head { display: flex; align-items: center; gap: 12px; }
.phone__head img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-red);
  padding: 1px;
}
.phone__head strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  letter-spacing: -0.01em;
}
.phone__head small {
  font-size: 11px;
  color: var(--c-text-muted);
  font-family: 'Space Grotesk', sans-serif;
}
.phone__verified { margin-left: auto; color: #4dc9ff; font-size: 16px; }
.phone__bubble {
  background: linear-gradient(135deg, rgba(255, 70, 85, .14), rgba(255, 140, 66, .04));
  border: 1px solid rgba(255, 70, 85, .25);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 14px;
  font-size: 13px;
  color: #f1f1f6;
  line-height: 1.6;
  flex-grow: 1;
  font-weight: 400;
}
.phone__rating { display: flex; align-items: center; gap: 3px; color: #ffb800; font-size: 12px; }
.phone__rating span {
  margin-left: 6px;
  color: var(--c-text-muted);
  font-weight: 700;
  font-family: 'Space Grotesk', monospace;
}

.voice__nav {
  position: absolute; top: 50%;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(10, 10, 20, .85);
  border: 1px solid var(--c-line-2);
  color: white;
  font-size: 14px;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--easing);
  z-index: 5;
  backdrop-filter: blur(10px);
}
.voice__nav:hover { background: var(--grad); border-color: transparent; transform: translateY(-50%) scale(1.1); }
.voice__nav--prev { left: -8px; }
.voice__nav--next { right: -8px; }
.voice__dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 36px;
}
.voice__dots button {
  width: 28px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
  transition: all .35s var(--easing);
}
.voice__dots button.is-active {
  background: var(--grad);
  width: 48px;
  box-shadow: 0 0 12px rgba(255, 70, 85, .7);
}

/* ===== Finale ===== */
.finale {
  position: relative;
  padding: 130px 28px;
  background: linear-gradient(135deg, #0e0e1c 0%, #06060c 100%);
  overflow: hidden;
}
.finale__pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 22% 30%, rgba(255, 70, 85, .4), transparent 30%),
    radial-gradient(circle at 78% 70%, rgba(255, 140, 66, .3), transparent 30%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.finale__inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.finale h2 {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.finale h2 span { display: block; overflow: hidden; }
.finale h2 .t-grad { display: inline; font-weight: 700; }
.finale p { color: var(--c-text-dim); margin-top: 18px; font-size: 16.5px; }
.finale .btn { margin-top: 36px; }
.finale__meta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--c-text-muted);
  font-size: 12.5px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.03em;
}
.finale__meta i { color: var(--c-orange); margin-right: 6px; }

/* ===== Footer ===== */
.foot {
  background: var(--c-dark-3);
  border-top: 1px solid var(--c-line);
  padding: 40px 28px 130px;
}
.foot__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
.foot__brand { display: flex; align-items: center; gap: 14px; }
.foot__brand strong {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: block;
}
.foot__brand strong em {
  font-family: 'Pretendard', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-left: 4px;
}
.foot__brand small {
  color: var(--c-text-muted);
  font-size: 12px;
}
.foot__links { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.foot__links button {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--c-line-2);
  color: var(--c-text-dim);
  transition: all .25s var(--easing);
}
.foot__links button:hover { background: var(--grad); color: white; border-color: transparent; }
.foot__copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--c-line);
  padding-top: 22px;
  color: var(--c-text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ===== Floating Bottom CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(580px, calc(100% - 24px));
  animation: jumpIdle 2.4s ease-in-out infinite;
}
@keyframes jumpIdle {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}
.floating-cta__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, #FF4655, #FF8C42);
  color: white;
  box-shadow:
    0 22px 50px rgba(255, 70, 85, 0.5),
    0 0 0 5px rgba(255, 70, 85, 0.15),
    inset 0 1px 0 rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--easing);
}
.floating-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shineSlide 2.8s ease-in-out infinite;
}
.floating-cta__btn:hover { transform: scale(1.02); }
.floating-cta__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.floating-cta__icon .btn__icon {
  width: 26px; height: 26px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.floating-cta__text {
  text-align: left;
  flex-grow: 1;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.floating-cta__text strong {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.floating-cta__text small {
  display: block;
  font-size: 11px;
  opacity: .92;
  font-weight: 500;
  margin-top: 2px;
}
.floating-cta__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform .35s var(--easing);
}
.floating-cta__btn:hover .floating-cta__arrow { transform: translateX(4px); background: rgba(0,0,0,.3); }

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  position: relative;
  background: linear-gradient(180deg, #1a1a2e, #0e0e1a);
  border: 1px solid var(--c-line-2);
  border-radius: 22px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  padding: 38px 34px 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: pop .35s var(--easing);
  overflow-y: auto;
}
@keyframes pop {
  0% { transform: translateY(30px) scale(.94); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  font-size: 15px;
  transition: background .25s, transform .25s;
}
.modal__close:hover { background: var(--c-red); transform: rotate(90deg); }
.modal__title {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 14px;
}
.modal__body {
  color: var(--c-text-dim);
  font-size: 14px;
  line-height: 1.75;
}
.modal__body p { margin-bottom: 12px; }
.modal__body h4 {
  font-family: 'GmarketSans', sans-serif;
  font-weight: 500;
  color: var(--c-text);
  margin: 20px 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.modal__body ul { padding-left: 18px; list-style: disc; }
.modal__body ul li { margin: 4px 0; }

/* ===== Reveal / Split ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

[data-split] {
  display: block;
  overflow: hidden;
  position: relative;
}
[data-split] .char {
  display: inline-block;
  transform: translateY(110%) rotate(8deg);
  transition: transform .7s var(--easing);
}
[data-split].is-in .char { transform: translateY(0) rotate(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  /* HERO */
  .hero { padding: 36px 16px 70px; text-align: center; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__badge { margin: 0 auto; }
  .hero__title { font-size: clamp(30px, 8.5vw, 42px); line-height: 1.1; margin-top: 18px; }
  .hero__sub { margin: 18px auto 0; max-width: 100%; font-size: 14.5px; line-height: 1.7; }
  .hero__sub br { display: none; }
  .hero__ctas { justify-content: center; margin-top: 26px; width: 100%; gap: 10px; }
  .hero__ctas .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 13px 18px; font-size: 14px; }
  .hero__visual { order: -1; max-width: 320px; margin: 0 auto; width: 100%; }
  .hero__chip { font-size: 10.5px; padding: 6px 12px; gap: 6px; }
  .chip--top { left: -6px; top: 10px; }
  .chip--bottom { right: -6px; bottom: 60px; }
  .hero__rings { display: none; }
  .hero__sticker { width: 78px; height: 78px; bottom: -22px; right: -12px; }
  .hero__sticker-text { font-size: 6.5px; padding: 6px; letter-spacing: 0.15em; }
  .hero__sticker::after { font-size: 20px; }
  .hero__scroll { display: none; }

  .hero__stats {
    margin: 32px auto 0;
    padding-top: 22px;
    width: 100%;
    max-width: 360px;
    gap: 8px;
  }
  .stat__num { font-size: 26px; }
  .stat__label { font-size: 11px; margin-top: 4px; }

  /* SECTION HEADS */
  .section-head { margin-bottom: 38px; padding: 0 8px; }
  .eyebrow { font-size: 10.5px; padding: 6px 14px; letter-spacing: 0.18em; }
  .section-title { font-size: clamp(24px, 6.6vw, 32px); margin-top: 14px; }
  .section-sub { font-size: 14px; margin-top: 14px; }

  /* ABOUT cards */
  .about { padding: 60px 16px; }
  .about__grid { grid-template-columns: 1fr; gap: 12px; max-width: 460px; margin: 0 auto; }
  .card { min-height: auto; padding: 22px 20px; border-radius: 16px; gap: 12px; }
  .card h3 { font-size: 17px; }
  .card p { font-size: 13px; }
  .card__icon { width: 44px; height: 44px; font-size: 18px; }

  /* FEATURE */
  .feature { padding: 60px 16px; gap: 38px; grid-template-columns: 1fr; max-width: 480px; }
  .feature--right .feature__visual { order: 1; }
  .feature__copy { text-align: center; }
  .feature__copy .eyebrow { margin: 0 auto; }
  .feature__copy h2 { font-size: clamp(24px, 6.4vw, 32px); }
  .feature__copy p { font-size: 14px; }
  .feature__copy .check-list { text-align: left; max-width: 380px; margin: 22px auto 26px; }
  .feature__copy .btn { margin: 0 auto; }
  .check-list li { font-size: 13.5px; padding: 10px 0; gap: 12px; }
  .check-list .chk { width: 24px; height: 24px; font-size: 10px; }
  .float-frame { border-radius: 18px; }
  .float-frame__caption { bottom: -20px; right: 12px; padding: 10px 14px; font-size: 13px; }
  .float-frame__caption small { font-size: 11px; }
  .ping-card { right: 8px; top: 12px; padding: 8px 12px; font-size: 11.5px; gap: 8px; }
  .ping-card small { font-size: 10px; }
  .bullet-row { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 100%; margin: 22px auto 28px; }
  .bullet { padding: 14px 8px; text-align: center; }
  .bullet h4 { font-size: 12.5px; margin-top: 8px; }
  .bullet p { font-size: 10.5px; line-height: 1.4; }
  .bullet i { font-size: 18px; }

  /* ARCHIVE */
  .archive { padding: 60px 16px; }
  .archive__wrap { grid-template-columns: 1fr; gap: 50px; max-width: 480px; margin: 0 auto; }
  .archive__copy { text-align: center; }
  .archive__copy .eyebrow { margin: 0 auto; }
  .archive__copy h2 { font-size: clamp(24px, 6.4vw, 32px); }
  .archive__copy p { font-size: 14px; }
  .archive__copy .check-list { text-align: left; max-width: 380px; margin: 22px auto 26px; }
  .archive__copy .btn { margin: 0 auto; }
  .archive__visual { max-width: 360px; margin: 0 auto; width: 100%; }
  .archive__sticker { width: 88px; height: 88px; bottom: -16px; left: -8px; }
  .archive__sticker-num { font-size: 24px; }
  .archive__marquee { transform: translateY(-50%) rotate(-3deg); padding: 10px 0; }

  /* VOICE */
  .voice { padding: 60px 12px; }
  .voice__slider { padding: 0 12px; }
  .phone { flex: 0 0 100%; max-width: 280px; margin: 0 auto; border-radius: 30px; }
  .phone__screen { min-height: 320px; padding: 16px 14px 20px; }
  .voice__nav { width: 34px; height: 34px; font-size: 12px; }
  .voice__nav--prev { left: 0; }
  .voice__nav--next { right: 0; }
  .voice__dots { margin-top: 24px; }
  .voice__dots button { width: 22px; }
  .voice__dots button.is-active { width: 38px; }

  /* FINALE */
  .finale { padding: 70px 16px; }
  .finale h2 { font-size: clamp(26px, 7vw, 36px); }
  .finale p { font-size: 14px; margin-top: 14px; }
  .finale .btn { margin-top: 28px; }
  .finale__meta { gap: 16px; font-size: 11.5px; margin-top: 22px; }
  .btn--xl { padding: 14px 24px; font-size: 14.5px; }

  /* FOOTER */
  .foot { padding: 28px 16px 120px; }
  .foot__inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .foot__brand { justify-content: center; flex-direction: column; gap: 10px; }
  .foot__links { justify-content: center; gap: 6px; }
  .foot__links button { padding: 7px 12px; font-size: 11.5px; }

  /* TICKER */
  .ticker__row { padding: 8px 0; }
  .ticker__item { font-size: 11.5px; gap: 6px; }
  .ticker__item em { font-size: 10.5px; padding: 2px 6px; }

  /* FLOATING CTA */
  .floating-cta { width: calc(100% - 16px); bottom: 10px; }
  .floating-cta__btn { padding: 9px 10px 9px 12px; gap: 10px; }
  .floating-cta__icon { width: 34px; height: 34px; }
  .floating-cta__icon .btn__icon { width: 22px; height: 22px; }
  .floating-cta__text strong { font-size: 12.5px; }
  .floating-cta__text small { font-size: 10.5px; margin-top: 1px; }
  .floating-cta__arrow { width: 28px; height: 28px; font-size: 11px; }

  /* MODAL */
  .modal__card { padding: 26px 20px 20px; border-radius: 18px; }
  .modal__title { font-size: 20px; }
  .modal__body { font-size: 13px; line-height: 1.7; }
  .modal__body h4 { font-size: 14px; margin: 16px 0 6px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { gap: 4px; }
  .stat__num { font-size: 22px; }
  .section-title { font-size: 26px; }
  .btn { padding: 12px 18px; font-size: 13.5px; }
  .bullet-row { gap: 6px; }
  .bullet { padding: 12px 6px; }
  .bullet h4 { font-size: 12px; }
  .bullet p { font-size: 10px; }
}

@media (max-width: 360px) {
  .ticker__item em { display: none; }
  .hero__title { font-size: 28px; }
  .section-title { font-size: 22px; }
}
