/* ──────────────────────────────────────────────────────────────
   biz-landing-3 — 무이자 사업자 대출 상담 (인3)

   레퍼런스: OK저축은행 대출 랜딩(okH0123L18)
   차용한 것은 화면 구조와 색 온도다.
     · 흰 바탕에 연한 블루그레이가 대각으로 깔린 배경
     · 왼쪽 큰 카피 / 오른쪽 거대한 숫자("500만원")
     · 그 아래 나란히 놓인 큰 버튼 두 개 (오렌지 · 차콜)
     · 짙은 회색 푸터
   로고·상호·심의필 번호 등 실제 기관 표기는 가져오지 않았다.

   페이지는 히어로 → 실시간 신청 현황 → 신청 폼, 세 덩어리다. 설명 섹션을
   덜어낸 만큼 히어로가 첫 화면을 가득 채우게 두었다.

   포인트 색은 오렌지. 보조로 남색(--navy)과 파랑(--blue)을 쓴다 —
   말풍선·CTA 패널·숫자 옆 라벨은 남색, 두 번째 버튼과 체크 아이콘은 파랑,
   남색 위에 얹는 강조 글자는 노랑(--yellow)이다. 차콜은 상단 띠와 푸터에 남는다.
   클래스 이름은 biz-landing-1 / 2와 맞춰 두어 셋을 나란히 손볼 수 있게 했다.
─────────────────────────────────────────────────────────────── */

:root {
  --orange: #f04e23;       /* CTA · 강조 */
  --orange-hover: #d93f17;
  --orange-2: #ff7a2f;     /* 그라데이션 밝은 쪽 */
  --orange-pale: #ffe4d8;  /* 배지 · 아이콘 바탕 */
  --orange-bg: #fff3ee;

  --sky-bg: #eef2fa;       /* 히어로 대각 배경 */
  --sky-soft: #f6f8fc;

  --ink: #2b2724;          /* 제목 */
  --ink-2: #454039;        /* 본문 */
  --ink-3: #6b645c;        /* 보조 */
  --ink-4: #8b837a;        /* 흐린 글 */
  --line: #eceef2;
  --surface: #ffffff;
  --bg: #f8f9fb;
  --dark: #332e2b;         /* 상단 알림 바 · 푸터 */
  --dark-2: #221e1c;
  --red: #e02b3f;

  --navy: #0f1e3d;         /* CTA 패널 · 말풍선 바탕 · 숫자 옆 라벨 */
  --navy-2: #16294d;       /* 남색 그라데이션 밝은 쪽 */
  --navy-line: #1f3866;    /* 남색 테두리 · 구분선 */
  --blue: #1c5bd8;         /* 두 번째 버튼 · 체크 아이콘 */
  --blue-2: #2563eb;       /* 파랑 그라데이션 밝은 쪽 */
  --yellow: #ffd94a;       /* 남색 위 강조 글자 */

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", system-ui, "Malgun Gothic", sans-serif;

  --r-card: 20px;
  --r-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.66;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap-narrow {
  max-width: 560px;
}

/* 넓은 화면에서만 줄바꿈하는 <br> */
.br-pc {
  display: none;
}

/* ── 버튼 ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease,
    box-shadow 0.15s ease;
}

.btn-orange {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(240, 78, 35, 0.26);
}

.btn-orange:hover {
  background: var(--orange-hover);
}

.btn-orange:active {
  transform: translateY(1px);
}

.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-lg {
  min-height: 58px;
  padding: 0 34px;
  font-size: 17px;
}

.btn-block {
  display: flex;
  width: 100%;
}

:where(a, button, input, select):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── 상단 알림 바 ───────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  min-height: 44px;
  padding: 7px 16px;
  background: var(--dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.topbar b {
  color: #ffc94d;
  font-weight: 700;
}

.pill {
  display: inline-block;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.pill-orange {
  background: var(--orange);
  color: #ffffff;
}

/* ── 헤더 ───────────────────────────────────────────────────── */
.gnb {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.gnb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}

.logo {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.logo b {
  color: var(--orange);
  font-weight: 800;
}

/* 헤더 버튼 문구가 길어져("지금 바로 신청하기 →") 줄이 접히면 헤더가
   무너진다. 접지 않고 한 줄로 두되 로고 쪽을 먼저 줄인다. */
.gnb .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.gnb .logo {
  min-width: 0;
  white-space: nowrap;
}

/* ── 히어로 ─────────────────────────────────────────────────── */
/* 레퍼런스 배경은 왼쪽 위가 희고 오른쪽 아래로 갈수록 연한 블루그레이가
   대각으로 번진다. 같은 인상을 그라데이션 두 겹으로 만든다. */
/* 설명 섹션을 덜어낸 만큼 히어로가 첫 화면을 가득 채운다.
   106px은 상단 알림 바(44) + 헤더(62)를 뺀 값이다.
   svh를 모르는 브라우저는 앞의 vh 줄을 쓴다. */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 106px);
  min-height: calc(100svh - 106px);
  /* 카피가 체크 리스트로, 버튼이 남색 패널로 늘어난 만큼 위아래 여백을 줄여
     CTA 패널까지 첫 화면에 들어오게 한다. */
  padding: 40px 0 44px;
  background:
    linear-gradient(118deg, #ffffff 0%, #ffffff 46%, var(--sky-bg) 46.1%, #e7ecf7 100%),
    var(--sky-bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  align-items: center;
  gap: 36px;
}

/* 긴 단어가 들어와도 격자 칸을 밀어내지 않게 한다 */
.hero-copy {
  min-width: 0;
}

/* 카피 맨 위 한 줄. 밑줄은 text-decoration이 아니라 글자 폭에만 걸리는
   오렌지 띠다 — 글자 모양 배경(linear-gradient)을 아래쪽에 깔아 두께를
   직접 잡는다. 인라인 요소라 줄 전체가 아니라 글자 폭까지만 그려진다. */
.hero-kicker {
  font-size: clamp(15px, 3.2vw, 20px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-kicker b {
  display: inline;
  padding-bottom: 3px;
  font-weight: 800;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: 0 100%;
}

/* 두 줄 모두 같은 크기다. 아래 줄("무이자 대출 지원!")이 폭을 지배하며
   실측하면 이 줄의 폭은 글자 크기의 약 8.6배다. 두 줄 구조를 지키려면
   이 줄이 카피 칸 안에 한 줄로 들어와야 하므로, 글자 크기는 칸 폭 ÷ 8.6이
   상한이다.

   한 칸 배치(≤760px)에서는 칸 폭이 화면 폭 - 40px이라 상한이
   (vw - 40) ÷ 8.6이다 — 320px에서 32.6px, 760px에서 83.7px.
   9.6vw / 최대 46px로 두면 전 구간에서 5% 이상 여유를 두고 한 줄에 들어온다.
   두 칸 배치(≥761px)는 칸 폭이 절반 남짓으로 줄어드니 아래 미디어 쿼리에서
   따로 잡는다. */
.hero-title {
  margin-top: 10px;
  font-size: clamp(28px, 9.6vw, 46px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.ht-line {
  display: block;
}

.accent {
  color: var(--orange);
}

/* 체크 리스트 세 줄 */
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: clamp(13.5px, 2.1vw, 16.5px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}

/* 파란 원 안의 흰 체크. 이미지 파일 없이 원은 배경, 체크는 ::after의
   두 변(오른쪽·아래)을 45도 돌려 만든다. */
.chk {
  position: relative;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 6px rgba(28, 91, 216, 0.28);
}

.chk::after {
  content: "";
  position: absolute;
  left: 7.5px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 오른쪽 큰 숫자 — 레퍼런스의 3D 숫자 그래픽 자리.
   말풍선 / 숫자 줄 / 배지, 세 층이다. */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  user-select: none;
}

/* 남색 말풍선. 아래 가운데 삼각 꼬리가 숫자를 가리킨다. */
.num-bubble {
  position: relative;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #ffffff;
  font-size: clamp(12px, 1.55vw, 15.5px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 30, 61, 0.24);
}

/* 꼬리 — 좌우 투명 + 위쪽 남색 테두리로 만든 아래를 향한 삼각형 */
.num-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -9px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid var(--navy);
}

/* 숫자 줄: 최대 · 500 · 만원 세 조각을 기준선에 맞춰 늘어놓는다 */
.num-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.num-side {
  font-size: clamp(15px, 1.9vw, 23px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

/* 큰 숫자는 세 자리("500")만 남았고 단위는 옆으로 떨어져 나갔다.
   실측하면 이 숫자의 폭은 글자 크기의 약 1.8배다. 양옆 라벨(각 2글자)과
   간격까지 더하면 줄 전체 폭은 대략 글자 크기 × 1.8 + 90px이다.
   오른쪽 칸 폭은 두 칸 배치가 시작되는 761px 화면에서 310px, 1080px 이상에서
   464px이므로 13.5vw / 최대 168px로 두면 어느 폭에서든 칸 안에 들어온다.
   좁은 화면은 한 칸으로 떨어져 폭이 넉넉해지므로 아래 max-width:760px
   블록에서 따로 키운다. */
.big-num {
  font-size: clamp(96px, 13.5vw, 168px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
  white-space: nowrap;
  background: linear-gradient(168deg, var(--orange-2) 0%, var(--orange) 52%, #c8380f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* 두께가 있어 보이도록 오른쪽 아래로 그림자를 계단처럼 쌓는다 */
  filter: drop-shadow(5px 7px 0 rgba(150, 42, 12, 0.28))
    drop-shadow(0 16px 26px rgba(200, 56, 15, 0.22));
}

/* 흰 바탕 + 남색 테두리 배지. 가운데 세로선으로 라벨과 값을 가른다. */
.zero-badge {
  display: flex;
  align-items: center;
  padding: 7px 4px;
  background: var(--surface);
  border: 2px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 30, 61, 0.14);
}

.zb-k {
  padding: 0 14px;
  font-size: clamp(12.5px, 1.5vw, 15.5px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--navy);
}

.zb-v {
  padding: 0 16px;
  border-left: 2px solid var(--navy-line);
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
}

/* ── CTA 남색 패널 ──────────────────────────────────────────── */
/* 왼쪽은 마감 압박 카피, 오른쪽은 나란한 버튼 두 개(레퍼런스 btn1 · btn2) */
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 68%);
  box-shadow: 0 14px 34px rgba(15, 30, 61, 0.26);
}

.cta-msg {
  min-width: 0;
}

.cta-note {
  font-size: clamp(12px, 1.5vw, 14.5px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.cta-lead {
  margin-top: 3px;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.hl-y {
  color: var(--yellow);
}

.cta-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 104px;
  padding: 14px 14px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.cta:active {
  transform: translateY(0);
}

.cta-top {
  font-size: clamp(10.5px, 1.5vw, 13.5px);
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.88;
}

.cta-main {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.cta-foot {
  margin-top: 1px;
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.92;
}

.cta-orange {
  background: linear-gradient(135deg, var(--orange-2) 0%, var(--orange) 62%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(240, 78, 35, 0.3);
}

.cta-blue {
  background: linear-gradient(135deg, var(--blue-2) 0%, var(--blue) 68%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(28, 91, 216, 0.32);
}

/* ── 조건 3칸 ───────────────────────────────────────────────── */
/* 아이콘이 왼쪽, 라벨과 값이 그 오른쪽에 위아래로 쌓인다 */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin-top: 14px;
}

.hero-stats li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  max-width: 300px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2e7f1;
  border-radius: 14px;
}

.stat-ico {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}

.stat-txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.stat-k {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
}

.stat-v {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--ink);
}

/* .accent가 .stat-v보다 위에 있어 같은 특이도로는 .stat-v의 color가 이긴다.
   강조는 특이도를 한 단계 올린 이 규칙으로 준다. */
.stat-v.accent {
  color: var(--orange);
}

.stat-v em {
  font-size: 0.78em;
  font-style: normal;
  font-weight: 700;
  color: var(--ink-3);
}

/* ── 섹션 공통 ──────────────────────────────────────────────── */
.sec {
  padding: 68px 0;
}

/* 흰 배경과 회색 배경을 번갈아 둔다 */
.sec-feed {
  background: var(--bg);
}

.sec-apply {
  background: linear-gradient(180deg, #ffffff 0%, var(--orange-bg) 100%);
}

.sec-title {
  font-size: clamp(22px, 5.6vw, 33px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.033em;
  color: var(--ink);
  text-align: center;
}

.sec-sub {
  margin: 14px auto 0;
  max-width: 40em;
  font-size: 15.5px;
  color: var(--ink-3);
  text-align: center;
}

/* 제목 아래 한 줄 안내 — 배지가 아니라 작은 보조 문구다.
   .sec-sub보다 한 단계 작고 흐리게 두어 제목을 가리지 않게 한다. */
.feed-note {
  margin: 12px auto 0;
  max-width: 32em;
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  text-align: center;
}

/* ── 신청서 ─────────────────────────────────────────────────── */
.form-card {
  margin-top: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 24px 26px;
  box-shadow: 0 8px 28px rgba(60, 40, 20, 0.08);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}

.field-hint {
  margin: -4px 0 9px;
  font-size: 13px;
  color: var(--ink-4);
}

.field input,
.field select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px; /* iOS 자동 확대 방지 */
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid #e3e1dd;
  border-radius: var(--r-sm);
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%238b837a' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.field select:invalid {
  color: #a8a099;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 78, 35, 0.14);
}

.field input.invalid,
.field select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 43, 63, 0.12);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  cursor: pointer;
}

.check input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.check b {
  color: var(--orange);
  font-weight: 700;
  margin-right: 3px;
}

.check.invalid span {
  color: var(--red);
}

.privacy {
  margin-bottom: 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-4);
}

.btn-orange:disabled {
  background: #cbc6c0;
  box-shadow: none;
  cursor: not-allowed;
}

.message {
  margin-top: 12px;
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--ink-3);
}

.message.error {
  color: var(--red);
}

.form-done {
  padding: 16px 0 8px;
  text-align: center;
}

.form-done:focus {
  outline: none;
}

.done-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  animation: pop 0.36s cubic-bezier(0.2, 0.8, 0.3, 1.2) both;
}

@keyframes pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: none; }
}

.form-done strong {
  display: block;
  margin-top: 16px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.form-done p {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-3);
}

/* ── 실시간 신청 현황 ───────────────────────────────────────── */
.feed {
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: 0 2px 12px rgba(60, 40, 20, 0.05);
  overflow: hidden;
}

.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--orange-bg);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.feed-date {
  font-weight: 600;
  color: var(--ink-4);
}

/* 보이는 창 높이를 고정해 두고 목록만 위로 굴린다.
   마지막 줄이 살짝 걸치게 두어 목록이 계속 이어진다는 것이 눈으로 읽히게 한다. */
.feed-view {
  height: 330px;
  overflow: hidden;
}

.feed-list {
  list-style: none;
}

.feed-list.is-rolling {
  animation: feed-roll 30s linear infinite;
}

.feed-list.is-rolling:hover {
  animation-play-state: paused;
}

@keyframes feed-roll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.feed-row {
  display: grid;
  grid-template-columns: 74px 46px minmax(0, 1fr) auto 44px;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid #f4f2ef;
}

.fr-type {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
}

.fr-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange);
}

.fr-who {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.34;
  color: var(--ink-4);
  text-align: center;
}

.fr-amt {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fr-state {
  padding: 3px 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.fr-state.is-ok {
  background: var(--orange);
}

.fr-state.is-wait {
  background: #16a34a;
}

/* ── 푸터 ───────────────────────────────────────────────────── */
.footer {
  padding: 30px 0 34px;
  background: #55504b;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.logo-foot {
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
}

.logo-foot b {
  color: #ff8a5c;
}

.foot-info {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.66;
}

.foot-copy {
  margin-top: 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.48);
}

/* ── 하단 고정 CTA (모바일) ─────────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-cta.is-hidden {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}

/* ── 등장 ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .done-ico { animation: none; }

  /* 굴리지 않고 첫 화면만 보여준다 */
  .feed-list.is-rolling,
  .live-dot {
    animation: none;
  }
}

/* ── 넓은 화면 ──────────────────────────────────────────────── */
@media (min-width: 761px) {
  .br-pc {
    display: inline;
  }

  /* 두 칸 배치에서 왼쪽 카피 칸의 폭은 (min(1080, 화면) - 76) ÷ 1.86이다.
     761px에서 368px, 1080px 이상에서 540px. 아래 줄 폭 = 글자 크기 × 8.6이므로
     한 줄로 들어오는 상한은 각각 42.8px과 62.8px이다. 5.2vw / 최대 58px로 두면
     761~1920px 전 구간에서 7% 이상 여유를 두고 두 줄을 유지한다.
     (오른쪽 큰 숫자 칸을 밀지 않는 것도 이 상한을 지켜야 보장된다.) */
  .hero-title {
    font-size: clamp(38px, 5.2vw, 58px);
  }

  /* 피드도 다른 섹션과 같은 좌우 여백(.wrap)에 맞춘다.
     누가 신청했는지는 왼쪽에 붙여 두고, 남는 폭은 통째로 가운데 빈칸으로
     두어 금액과 상태를 오른쪽 끝으로 민다. */
  .feed-row {
    grid-template-columns: 116px 76px 190px minmax(0, 1fr) 68px;
    gap: 14px;
    padding: 12px 30px;
  }

  .feed-row .fr-who {
    text-align: left;
  }

  .feed-head {
    padding: 15px 30px;
  }

  .sticky-cta {
    display: none;
  }
}

/* ── 좁은 화면 ──────────────────────────────────────────────── */
@media (max-width: 760px) {
  .hero {
    padding: 28px 0 32px;
    /* 좁은 화면에서는 대각선이 조각처럼 보인다. 위아래 그라데이션으로 바꾼다. */
    background: linear-gradient(180deg, #ffffff 0%, var(--sky-bg) 100%);
  }

  /* 카피 아래에 숫자를 놓는다 */
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    text-align: center;
  }

  /* 카피는 가운데로 몰리지만 체크 리스트는 줄끼리 왼쪽을 맞춰야 읽힌다.
     덩어리째 가운데 두고 안쪽만 왼쪽 정렬한다. */
  .hero-checks {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    gap: 6px;
    text-align: left;
  }

  .chk {
    width: 19px;
    height: 19px;
    margin-top: 1px;
  }

  .chk::after {
    left: 6.5px;
    top: 4px;
    width: 4.5px;
    height: 8px;
  }

  .hero-visual {
    margin-top: 4px;
    gap: 12px;
  }

  /* 한 칸으로 떨어져 폭이 넉넉해지므로 다시 키운다.
     화면 폭의 26% × 폭 배율 1.8 ≈ 화면의 47%. 양옆 라벨과 간격을 더해도
     좌우 여백(20px씩) 안에 들어온다. 최대 140px로 묶는 것은 히어로 높이
     때문이다. 여기서 더 키우면 CTA 패널이 첫 화면 아래로 밀린다. */
  .big-num {
    font-size: clamp(84px, 26vw, 140px);
  }

  /* 패널은 위아래로 나뉜다. 버튼 두 개는 좁은 화면에서도 나란히 둔다 —
     세로로 쌓으면 CTA 패널이 첫 화면을 넘어간다. */
  .cta-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding: 12px;
    border-radius: 18px;
    text-align: center;
  }

  .cta-duo {
    gap: 8px;
  }

  .cta {
    min-height: 88px;
    padding: 11px 6px;
    border-radius: 14px;
  }

  .hero-stats {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-stats li {
    gap: 7px;
    padding: 9px 8px;
    border-radius: 12px;
  }

  .stat-ico {
    font-size: 15px;
  }

  .stat-k {
    font-size: 10.5px;
  }

  .stat-v {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .stat-v em {
    font-size: 0.86em;
  }

  /* 헤더 버튼이 "지금 바로 신청하기 →"로 길어졌다. 좁은 폭에서 로고와
     부딪히지 않게 로고와 버튼을 함께 줄인다. */
  .logo {
    font-size: 17px;
  }

  .gnb-inner {
    gap: 10px;
  }

  .gnb .btn-sm {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .feed-note {
    font-size: 12.5px;
  }

  .sec {
    padding: 48px 0;
  }

  /* 신청 섹션 다음이 푸터뿐이므로 고정 CTA 자리를 여기서 확보한다 */
  .sec-apply {
    padding-bottom: 40px;
  }

  .footer {
    padding-bottom: 104px;
  }

  .feed-row {
    grid-template-columns: 66px 42px minmax(0, 1fr) auto 40px;
    gap: 6px;
    padding: 11px 14px;
  }

  .fr-type,
  .fr-name {
    font-size: 11.5px;
  }

  .fr-who {
    font-size: 11px;
  }

  .fr-amt {
    font-size: 13px;
  }

  .form-card {
    padding: 24px 18px 22px;
  }
}
