/* Homepage hero — premium layout (stable, no wildcard span rules) */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes heroRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); }
  50% { opacity: 1; transform: scaleY(1); }
}

body.flk-home #hero {
  --hero-sakura: #ff6b9d;
  --hero-mint: #00f5d4;
  --hero-gold: #f5a623;
  --hero-violet: #b794f6;
  --hero-glass: rgba(250, 239, 226, 0.88);
  --hero-line: rgba(120, 103, 93, 0.15);
}

/* Disable duplicate gradient ring from flk-wow.css */
html.flk-dark body.flk-home #hero .hero-img-wrap::before {
  display: none !important;
}

/* ── Staggered entrance ── */
body.flk-home #hero .hero-quick-track { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
body.flk-home #hero .hero-brand { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both; }
body.flk-home #hero .hero-method { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both; }
body.flk-home #hero .hero-title { animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both; }
body.flk-home #hero .hero-subtitle { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both; }
body.flk-home #hero .hero-btns { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both; }
body.flk-home #hero .hero-stats { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both; }
body.flk-home #hero .hero-right { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }

/* ── Quick Track bar ── */
body.flk-home #hero .hero-quick-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 157, 0.22);
  background:
    linear-gradient(120deg, rgba(230, 57, 70, 0.14) 0%, transparent 42%),
    linear-gradient(300deg, rgba(0, 245, 212, 0.08) 0%, transparent 38%),
    var(--hero-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 color-mix(in srgb, var(--text) 7%, transparent);
  flex-shrink: 0;
}

body.flk-home #hero .hero-qt-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.flk-home #hero .hero-qt-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

body.flk-home #hero .hero-quick-track-kanji {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.85), rgba(230, 57, 70, 0.65));
  border: 1px solid rgba(255, 107, 157, 0.35);
  box-shadow: 0 0 24px rgba(230, 57, 70, 0.25);
  text-shadow: none;
}

body.flk-home #hero .hero-quick-track-label {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e1613;
  line-height: 1.2;
}

body.flk-home #hero .hero-quick-track-msg {
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: #6e594f;
  line-height: 1.3;
}

body.flk-home #hero .hero-qt-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(120, 103, 93, 0.22), transparent);
  flex-shrink: 0;
}

body.flk-home #hero .hero-qt-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.flk-home #hero .hero-quick-track-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--hero-line);
  background: rgba(250, 239, 226, 0.9);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.25s;
}

body.flk-home #hero .hero-quick-track-step:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 163, 125, 0.45);
  box-shadow: 0 8px 24px rgba(120, 103, 93, 0.15);
}

body.flk-home #hero .hero-quick-track-step--primary {
  border-color: rgba(230, 57, 70, 0.45);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(230, 57, 70, 0.05));
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.12);
}

body.flk-home #hero .hero-quick-track-num {
  flex-shrink: 0;
}

body.flk-home #hero .hero-quick-track-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1e1613;
  line-height: 1.25;
  white-space: nowrap;
}

body.flk-home #hero .hero-quick-track-jp {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #6e594f;
  margin-left: 3px;
}

body.flk-home #hero .hero-quick-track-arrow {
  color: #6e594f;
  font-size: 0.95rem;
  font-weight: 800;
}

/* ── Copy column accent ── */
body.flk-home #hero .hero-copy {
  position: relative;
  padding-left: 18px;
}

body.flk-home #hero .hero-copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--hero-sakura) 0%, var(--hero-gold) 45%, var(--hero-mint) 100%);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.35);
}

/* ── Brand ── */
body.flk-home #hero .hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(10px, 1.4vh, 16px) !important;
}

body.flk-home #hero .hero-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.35), rgba(230, 57, 70, 0.08));
  border: 1px solid rgba(255, 107, 157, 0.3);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.18);
  flex-shrink: 0;
}

body.flk-home #hero .hero-brand-kanji {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--hero-sakura);
  margin: 0;
}

body.flk-home #hero .hero-brand-text {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.12rem);
  font-weight: 800;
  color: #1e1613;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

body.flk-home #hero .hero-brand-accent {
  color: var(--hero-sakura);
}

/* ── One-a-Day method ── */
body.flk-home #hero .hero-method {
  margin-bottom: clamp(10px, 1.5vh, 18px) !important;
  padding: 14px 16px !important;
  border-radius: 18px;
  border: 1px solid var(--hero-line);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(230, 57, 70, 0.06), transparent 55%),
    rgba(250, 239, 226, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 16px rgba(120, 103, 93, 0.08);
}

body.flk-home #hero .hero-method-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

body.flk-home #hero .hero-method-badge {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--hero-sakura);
  background: rgba(232, 90, 123, 0.12);
  border: 1px solid rgba(232, 90, 123, 0.2);
}

body.flk-home #hero .hero-method-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2b211d;
  margin: 0 !important;
}

body.flk-home #hero .hero-method-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

body.flk-home #hero .hero-method-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #2b211d;
  background: rgba(120, 103, 93, 0.07);
  border: 1px solid rgba(120, 103, 93, 0.15);
  transition: border-color 0.2s, background 0.2s;
}

body.flk-home #hero .hero-method-chip:hover {
  border-color: rgba(120, 103, 93, 0.28);
  background: rgba(120, 103, 93, 0.12);
}

body.flk-home #hero .hero-method-glyph {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

body.flk-home #hero .hero-method-chip[data-skill="hira"] .hero-method-glyph { color: var(--hero-sakura); }
body.flk-home #hero .hero-method-chip[data-skill="kata"] .hero-method-glyph { color: #0284c7; }
body.flk-home #hero .hero-method-chip[data-skill="kanji"] .hero-method-glyph { color: var(--hero-gold); }
body.flk-home #hero .hero-method-chip[data-skill="word"] .hero-method-glyph { color: var(--hero-mint); }
body.flk-home #hero .hero-method-chip[data-skill="phrase"] .hero-method-glyph { color: var(--hero-violet); }
body.flk-home #hero .hero-method-chip[data-skill="sentence"] .hero-method-glyph { color: #0284c7; }

body.flk-home #hero .hero-method-day {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(90deg, #d93848, #e85a7b);
  border: none;
  padding: 6px 13px;
  box-shadow: 0 4px 16px rgba(217, 56, 72, 0.25);
}

/* ── Headline ── */
body.flk-home #hero .hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: #1e1613;
  text-shadow: none;
  margin-bottom: 0;
}

body.flk-home #hero .hero-title-line {
  display: block;
}

body.flk-home #hero .hero-title-line:first-child {
  font-size: 0.92em;
  letter-spacing: -0.02em;
  color: #1e1613;
}

body.flk-home #hero .hero-hl {
  background: linear-gradient(120deg, #d93848 0%, #d97706 38%, #1ba37d 72%, #8b5cf6 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 10s ease infinite;
  filter: drop-shadow(0 2px 10px rgba(217, 56, 72, 0.15));
}

body.flk-home #hero .hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.84rem, 1.5vh, 0.98rem) !important;
  font-weight: 600;
  color: #4a3c35 !important;
  line-height: 1.55 !important;
  max-width: 420px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.flk-home #hero .hero-free-pill {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1ba37d;
  background: rgba(27, 163, 125, 0.1);
  border: 1px solid rgba(27, 163, 125, 0.28);
  box-shadow: 0 0 20px rgba(27, 163, 125, 0.12);
}

/* ── Buttons ── */
body.flk-home #hero .hero-btns {
  gap: 12px;
}

body.flk-home #hero .btn-hero-primary {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.9rem !important;
  padding: 13px 26px !important;
  border-radius: 14px;
  color: #ffffff !important;
  border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
  background: linear-gradient(135deg, #d93848 0%, #e85a7b 100%);
  box-shadow:
    0 10px 32px rgba(217, 56, 72, 0.35),
    inset 0 1px 0 color-mix(in srgb, var(--text) 25%, transparent);
  animation: none !important;
}

body.flk-home #hero .btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(217, 56, 72, 0.45);
}

body.flk-home #hero .btn-hero-ghost {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem !important;
  padding: 13px 24px !important;
  border-radius: 14px;
  color: #2b211d;
  border: 1px solid rgba(120, 103, 93, 0.22);
  background: rgba(250, 239, 226, 0.85);
  backdrop-filter: blur(8px);
}

body.flk-home #hero .btn-hero-ghost:hover {
  background: #faefe2;
  border-color: rgba(27, 163, 125, 0.4);
  color: #1e1613;
}

/* ── Stat pills ── */
body.flk-home #hero .hero-stats,
body.flk-home #hero .hub-hero-shell--home .hero-stats {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px !important;
  margin-top: clamp(16px, 2.2vh, 26px) !important;
  grid-template-columns: unset !important;
}

body.flk-home #hero .hero-stat-pill {
  flex: 1 1 0;
  min-width: 88px;
  max-width: 140px;
  padding: 14px 10px 10px;
  border-radius: 14px;
  text-align: center;
  background: rgba(250, 239, 226, 0.92);
  border: 1px solid rgba(120, 103, 93, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 16px rgba(120, 103, 93, 0.08);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.flk-home #hero .hero-stat-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 2px;
  opacity: 0.85;
}

body.flk-home #hero .hero-stat-pill[data-stat="tools"]::before { background: var(--hero-sakura, #e63946); box-shadow: 0 0 12px rgba(255, 107, 157, 0.5); }
body.flk-home #hero .hero-stat-pill[data-stat="cards"]::before { background: var(--hero-gold, #f5a623); box-shadow: 0 0 12px rgba(245, 166, 35, 0.45); }
body.flk-home #hero .hero-stat-pill[data-stat="course"]::before { background: #1ba37d; box-shadow: 0 0 12px rgba(27, 163, 125, 0.45); }
body.flk-home #hero .hero-stat-pill[data-stat="ranks"]::before { background: var(--hero-violet, #8b5cf6); box-shadow: 0 0 12px rgba(139, 92, 246, 0.45); }

body.flk-home #hero .hero-stat-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 103, 93, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(120, 103, 93, 0.16);
}

body.flk-home #hero .hero-stat-pill:active {
  transform: translateY(-1px);
}

body.flk-home #hero .hero-stat-pill:focus-visible {
  outline: 2px solid var(--sakura, #e63946);
  outline-offset: 2px;
}

body.flk-home #hero .hero-stat-pill .hub-stat-num,
body.flk-home #hero .hero-stat-pill .hero-stat-num {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.35rem, 2.6vh, 1.85rem) !important;
  font-weight: 800;
  line-height: 1.1;
  display: block;
}

body.flk-home #hero .hero-stat-pill[data-stat="tools"] .hub-stat-num { color: #d93848 !important; }
body.flk-home #hero .hero-stat-pill[data-stat="cards"] .hub-stat-num { color: #d97706 !important; }
body.flk-home #hero .hero-stat-pill[data-stat="course"] .hub-stat-num { color: #1ba37d !important; }
body.flk-home #hero .hero-stat-pill[data-stat="ranks"] .hub-stat-num { color: #8b5cf6 !important; }

body.flk-home #hero .hero-stat-pill .hub-stat-lbl,
body.flk-home #hero .hero-stat-pill .hero-stat-lbl {
  font-family: 'Nunito', sans-serif;
  font-size: 0.58rem !important;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6e594f !important;
  margin-top: 4px;
  display: block;
  line-height: 1.25;
}

.hero-stat-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8a7368;
  opacity: 0.85;
  transition: color 0.2s, transform 0.2s, opacity 0.2s;
}

.hero-stat-action-arrow {
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

body.flk-home #hero .hero-stat-pill:hover .hero-stat-action {
  opacity: 1;
}

body.flk-home #hero .hero-stat-pill[data-stat="tools"]:hover .hero-stat-action { color: #d93848; }
body.flk-home #hero .hero-stat-pill[data-stat="cards"]:hover .hero-stat-action { color: #d97706; }
body.flk-home #hero .hero-stat-pill[data-stat="course"]:hover .hero-stat-action { color: #1ba37d; }
body.flk-home #hero .hero-stat-pill[data-stat="ranks"]:hover .hero-stat-action { color: #8b5cf6; }

body.flk-home #hero .hero-stat-pill:hover .hero-stat-action-arrow {
  transform: translateX(2px);
}

html.flk-dark body.flk-home #hero .hero-stat-pill {
  background: rgba(30, 24, 45, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.3);
}

html.flk-dark body.flk-home #hero .hero-stat-pill .hub-stat-lbl,
html.flk-dark body.flk-home #hero .hero-stat-pill .hero-stat-lbl {
  color: #b8a9a0 !important;
}

html.flk-dark .hero-stat-action {
  color: #a89990;
}

/* ── Hero image ── */
body.flk-home #hero .hero-img-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 560px;
  aspect-ratio: unset;
  height: auto;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: heroImgFloat 6s ease-in-out infinite;
}

body.flk-home #hero .hero-img-wrap:hover {
  animation-play-state: paused;
}

body.flk-home #hero .hero-img-wrap picture {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 0;
  transform-style: preserve-3d;
}

body.flk-home #hero .hero-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto !important;
  max-height: calc(var(--flk-fill-h) - 120px);
  aspect-ratio: 560 / 840;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--hero-sakura) 35%, transparent);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px color-mix(in srgb, var(--hero-sakura) 28%, transparent);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.35s ease;
}

body.flk-home #hero .hero-img-wrap:hover .hero-img {
  transform: translateZ(30px) scale(1.03) rotateX(4deg);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 90px color-mix(in srgb, var(--hero-sakura) 40%, transparent);
}

body.flk-home #hero .hero-img-ring {
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  z-index: 0;
  pointer-events: none;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    var(--hero-sakura),
    var(--hero-gold),
    var(--hero-mint),
    var(--hero-violet),
    var(--hero-sakura)
  );
  animation: heroRingSpin 12s linear infinite;
  opacity: 0.7;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

body.flk-home #hero .hero-img-shine {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(125deg, color-mix(in srgb, var(--text) 12%, transparent) 0%, transparent 42%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

body.flk-home #hero .hero-right {
  align-self: center;
}

/* ── Scroll hint ── */
body.flk-home #hero .hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.25s;
  flex-shrink: 0;
  animation: heroFadeUp 0.6s ease 0.7s both;
}

body.flk-home #hero .hero-scroll-hint:hover {
  opacity: 0.85;
}

body.flk-home #hero .hero-scroll-hint-line {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--text) 50%, transparent));
  border-radius: 1px;
  animation: heroScrollPulse 2s ease-in-out infinite;
  transform-origin: top center;
}

body.flk-home #hero .hero-scroll-hint-text {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  body.flk-home #hero .hero-quick-track {
    justify-content: center;
    text-align: center;
  }
  body.flk-home #hero .hero-qt-brand {
    flex: 1 1 100%;
    justify-content: center;
  }
  body.flk-home #hero .hero-qt-divider {
    display: none;
  }
  body.flk-home #hero .hero-qt-steps {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  body.flk-home #hero .hero-stat-pill {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
  }
  body.flk-home #hero .hero-qt-steps {
    flex-direction: column;
    width: 100%;
  }
  body.flk-home #hero .hero-quick-track-arrow {
    transform: rotate(90deg);
  }
  body.flk-home #hero .hero-quick-track-step {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body.flk-home #hero .hero-stat-pill {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding: 10px 8px;
  }
}

@media (max-width: 900px) {
  body.flk-home #hero .hero-img {
    max-height: min(42vh, 380px);
    margin: 0 auto;
  }

  body.flk-home #hero .hero-copy {
    padding-left: 0;
  }
  body.flk-home #hero .hero-copy::before {
    display: none;
  }
  body.flk-home #hero .hero-scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.flk-home #hero .hero-hl,
  body.flk-home #hero .hero-img-wrap,
  body.flk-home #hero .hero-img-ring,
  body.flk-home #hero .hero-scroll-hint-line {
    animation: none;
  }
  body.flk-home #hero .hero-quick-track,
  body.flk-home #hero .hero-brand,
  body.flk-home #hero .hero-method,
  body.flk-home #hero .hero-title,
  body.flk-home #hero .hero-subtitle,
  body.flk-home #hero .hero-btns,
  body.flk-home #hero .hero-stats,
  body.flk-home #hero .hero-right,
  body.flk-home #hero .hero-scroll-hint {
    animation: none;
  }
  body.flk-home #hero .hero-stat-pill:hover,
  body.flk-home #hero .hero-quick-track-step:hover {
    transform: none;
  }
}