/* TeCluster — 앱의 밤 계기판 테마를 그대로 웹으로 (2026-09-02 원페이지 리디자인)
   단일 다크 테마(의도적) — 모든 색을 명시합니다. */
:root {
  --bg: #0a0b0e;          /* 딥 카본 (앱 밤 배경) */
  --bg2: #0e1014;
  --card: #12141a;
  --line: rgba(255,255,255,.07);
  --text: #f2f4f7;
  --subtle: #8b919b;
  --cyan: #26d9f0;        /* KM/H 시안 */
  --blue: #2e8cff;
  --gold: #f0b429;        /* 스위프 끝 금빛 */
  --lime: #7ed957;        /* 배터리 초록 */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Apple SD Gothic Neo", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* html에는 걸지 않음 — 둘 다 걸면 body가 스크롤 컨테이너가 되어 sticky 히어로가 멈춤 */
}
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
a { color: var(--cyan); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, figcaption { word-break: keep-all; }

/* ── 상단 바: 유리 느낌 고정 ── */
.top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,11,14,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 16px; color: var(--text); font-size: 17px; letter-spacing: -.01em; }
.brand .mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: url("favicon.png") center/cover;
}
.top nav { display: flex; gap: 22px; overflow-x: auto; scrollbar-width: none; }
.top nav::-webkit-scrollbar { display: none; }
.top nav a { color: var(--subtle); font-size: 14px; font-weight: 500; transition: color .2s; white-space: nowrap; }
.top nav a:hover, .top nav a[aria-current] { color: var(--text); }

/* ── 히어로: 앱과 같은 어둠 위에 은은한 스위프 광 ── */
.hero { position: relative; padding: 96px 0 30px; text-align: center; overflow: hidden; }   /* 빛 번짐이 화면 밖으로 새지 않게 */
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; filter: blur(60px);
}
.hero::before {   /* 파랑→시안 (스위프 시작) */
  left: -10%; top: -20%; width: 55%; height: 70%;
  background: radial-gradient(closest-side, rgba(46,140,255,.16), transparent 70%);
}
.hero::after {    /* 금빛 (스위프 끝, 플레어) */
  right: -8%; top: -10%; width: 45%; height: 60%;
  background: radial-gradient(closest-side, rgba(240,180,41,.12), transparent 70%);
}
.eyebrow {
  color: var(--cyan); font-size: 13px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6.4vw, 68px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.12; text-wrap: balance;
  margin-bottom: 20px;
}
.hero p { max-width: 640px; margin: 0 auto 26px; color: var(--subtle); font-size: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  color: var(--text); font-size: 14px; font-weight: 600;
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
}

/* ── 스크롤 히어로: 속도가 차오르고 내비로 전환 ── */
.scrolly { display: none; }
body.scrolly-on .scrolly { display: block; height: 340vh; padding: 0; }
body.scrolly-on .scrolly.day { height: 260vh; margin-bottom: 0; }
/* 무대 다음 내용은 바로 이어지게 — 섹션 기본 여백(64px)이 무대 아래 빈 공간으로 보였음 (2026-09-03) */
body.scrolly-on .scrolly + section { padding-top: 20px; }
body.scrolly-on .scrolly.day ~ .shots-h { margin-top: 12px; }
.scrolly .hint { margin-bottom: 0; }
body.scrolly-on .shots.hero-shot, body.scrolly-on .day-shot { display: none; }
.scrolly { position: relative; }
.scrolly .sticky {
  /* 고정은 JS가 fixed/absolute로 직접 처리 — sticky가 막히는 브라우저(overflow 조합·구형 사파리)에서도 동작 */
  position: absolute; top: 0; left: 0; right: 0;
  /* 높이는 무대만큼만 — 화면 높이로 잡으면 무대 위아래에 빈 공간이 생겨 글과 그림 사이가 벌어짐 (2026-09-03) */
  padding: 8px 0 6px;
  display: flex; align-items: flex-start; justify-content: center;
}
.scrolly .stage {
  width: min(1040px, calc(100vw - 48px)); height: min(76vh, 560px);
  border-radius: 22px; overflow: hidden;
  background: #0a0b0e;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 30px 90px rgba(0,0,0,.55),
              0 0 60px rgba(46,140,255,.10), 0 0 120px rgba(240,180,41,.06);
}
.scrolly canvas { width: 100%; height: 100%; display: block; }
.scrolly.day .stage {
  background: #f2f4f7; border-color: rgba(0,0,0,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.45), 0 0 60px rgba(46,140,255,.08);
}
.scrolly .hint {
  text-align: center; color: var(--subtle); font-size: 13px; margin-top: 14px;
}

/* ── 스크린샷: 발광하는 유리판 ── */
.shots { padding: 40px 0 8px; }
.shots figure {
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 30px 90px rgba(0,0,0,.55),
              0 0 60px rgba(46,140,255,.10),
              0 0 120px rgba(240,180,41,.06);
  margin-bottom: 34px;
}
.shots .note { color: var(--subtle); font-size: 13px; text-align: center; }

/* ── 공통 섹션 ── */
main section { padding: 64px 0 8px; }
main h2 {
  font-size: clamp(26px, 3.6vw, 36px); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 30px; text-wrap: balance;
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
}
.card h3 { font-size: 16px; font-weight: 650; margin-bottom: 8px; letter-spacing: -.01em; }
.card p, .card li { color: var(--subtle); font-size: 14px; }
.card .sub { margin-bottom: 10px; }
.card ul { list-style: none; }
.card ul li { padding: 5px 0 5px 22px; position: relative; }
.card ul li::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 10px; height: 10px; border-radius: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  opacity: .8;
}
/* 기능 카드마다 스위프 색을 하나씩 */
.grid .card { position: relative; overflow: hidden; }
.grid .card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
  opacity: 0; transition: opacity .25s;
}
.grid .card:hover::before { opacity: 1; }

/* ── 내 차 정보: 앱 카드 미니 목업과 나란히 ── */
.carinfo { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.carinfo .copy p.lede2 { color: var(--subtle); font-size: 16px; margin-bottom: 18px; }
.carinfo ul { list-style: none; }
.carinfo ul li { padding: 7px 0 7px 28px; position: relative; color: var(--text); font-size: 15px; }
.carinfo ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700;
}
.mock {
  background: var(--card); border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 20px 20px 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 50px rgba(38,217,240,.07);
}
.mock .mt { color: var(--cyan); font-size: 13px; font-weight: 650; margin-bottom: 8px; }
.mock .mr {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.mock .mr:last-child { border-bottom: 0; }
.mock .mr b { font-weight: 650; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.mock .mr span { color: var(--subtle); }
.mock .mr b.accent { color: var(--cyan); }

.note { color: var(--subtle); font-size: 13px; margin-top: 14px; }

/* ── 푸터 ── */
footer { margin-top: 80px; border-top: 1px solid var(--line); padding: 34px 0 44px; }
footer b { font-size: 15px; }
footer p { color: var(--subtle); font-size: 12.5px; margin-top: 10px; }
footer .links a { margin-right: 16px; color: var(--subtle); }
footer .links a:hover, footer .links a[aria-current] { color: var(--text); }
footer .links span { color: var(--subtle); }

/* ── 문서(방침·약관) 페이지 ── */
.doc { max-width: 760px; padding-top: 56px; }
.doc h1 { font-size: 32px; letter-spacing: -.02em; margin-bottom: 10px; }
.doc .meta, .doc .draft { color: var(--subtle); font-size: 13px; margin-bottom: 12px; }
.doc .lede { color: var(--subtle); margin-bottom: 20px; }
.doc article { margin-top: 30px; }
.doc h2 { font-size: 19px; margin-bottom: 10px; }
.doc ol { padding-left: 20px; }
.doc li { color: var(--subtle); font-size: 14.5px; padding: 3px 0; }
.doc article.single ol { list-style: none; padding-left: 0; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .carinfo { grid-template-columns: 1fr; }
  .top nav { gap: 14px; }
  .top nav a { font-size: 13px; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 16px; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .hero p { font-size: 16.5px; }
  .brand { font-size: 16px; margin-right: 10px; }
  .top nav { gap: 12px; }
  .top nav a { font-size: 12.5px; }
  .top nav a:first-child { display: none; }   /* 홈은 로고가 대신 */
  .scrolly .stage { width: calc(100vw - 32px); height: min(72vh, 560px); }
  footer .links a { margin-right: 12px; }
}

/* ── 차와 이어지는 방식: 목적지 이어받기 애니메이션 ── */
#handoff.stagewrap {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 26px 26px; overflow: hidden; position: relative;
}
.hgrid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px;
  align-items: center; max-width: 860px; margin: 0 auto;
}
.cardev {
  background: #17191f; border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
  padding: 16px; min-height: 150px;
}
.cardev .devlabel, .phone .devlabel {
  color: var(--subtle); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 10px;
}
.car-search {
  display: flex; align-items: center; gap: 8px;
  background: #0e1013; border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px; padding: 10px 12px; color: var(--text); font-size: 14px;
}
.car-search .mag { color: var(--subtle); }
.car-type { min-height: 1.2em; }
.phase-1 .car-type::after {
  content: "▏"; color: var(--cyan); animation: blink 0.8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.car-go {
  margin-top: 12px; text-align: center; border-radius: 9px; padding: 9px 0;
  background: rgba(46,140,255,.16); color: #7db8ff; font-size: 13px; font-weight: 600;
  transition: background .3s, color .3s;
}
.phase-2 .car-go, .phase-3 .car-go { background: var(--blue); color: #fff; }
.pulse { width: 120px; position: relative; height: 60px; }
.pulse .lane {
  position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 6px, transparent 6px 12px);
}
.pulse .dot {
  position: absolute; top: 50%; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  transform: translate(-10px, -50%); opacity: 0;
}
.phase-2 .pulse .dot, .phase-3 .pulse .dot { animation: travel 1.4s ease-in-out infinite; }
.phase-3 .pulse .dot { opacity: .5; }
@keyframes travel {
  0% { transform: translate(-6px, -50%); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translate(118px, -50%); opacity: 0; }
}
.phone {
  background: #0a0b0e; border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
  padding: 14px; min-height: 150px; position: relative; overflow: hidden;
}
.mini { position: relative; height: 96px; }
.mini .gauge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: transform .8s cubic-bezier(.5,0,.2,1), left .8s cubic-bezier(.5,0,.2,1); text-align: center;
}
/* 내비 전환: 폰 폭에 비례해 왼쪽 1/4 지점으로 — 좁은 화면에서도 잘리지 않음 */
.phase-3 .mini .gauge { left: 25%; transform: translate(-50%, -50%) scale(.82); }
.mini .gauge svg { display: block; margin: 0 auto; }
.mini .speed {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600; color: var(--text);
}
.mini .speed small { font-size: 8px; color: var(--cyan); letter-spacing: .15em; }
.mini .map {
  position: absolute; right: -6px; top: -14px; bottom: -14px; width: 58%;
  background: url("map-night.png?v=20260901n") center/cover;
  opacity: 0; transform: translateX(24px); transition: all .8s cubic-bezier(.5,0,.2,1);
  border-left: 1px solid rgba(255,255,255,.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 26%);
  mask-image: linear-gradient(90deg, transparent, #000 26%);
}
.phase-3 .mini .map { opacity: 1; transform: translateX(0); }
.phone .toast {
  position: absolute; left: 50%; bottom: 10px; transform: translate(-50%, 30px);
  background: rgba(18,20,26,.95); border: 1px solid rgba(255,255,255,.14);
  color: var(--cyan); font-size: 11.5px; padding: 6px 12px; border-radius: 999px;
  white-space: nowrap; opacity: 0; transition: all .5s ease .15s;
}
.phase-2 .phone .toast, .phase-3 .phone .toast { opacity: 1; transform: translate(-50%, 0); }
.hsteps { display: flex; justify-content: center; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.hstep {
  display: flex; align-items: center; gap: 9px;
  color: var(--subtle); font-size: 13.5px; transition: color .4s;
}
.hstep .n {
  width: 22px; height: 22px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); font-size: 11px; font-weight: 700; transition: all .4s;
}
.hstep.on { color: var(--text); }
.hstep.on .n {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent; color: #04121a;
}
@media (max-width: 720px) {
  .hgrid { grid-template-columns: 1fr; }
  .pulse { width: 60px; height: 46px; margin: 0 auto; transform: rotate(90deg); }
}

/* 차량 내비 화면 — 안내를 켜면 지도가 뜨고 경로가 그려집니다 */
.cardev { position: relative; overflow: hidden; }
.car-map {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
}
.car-map svg { width: 100%; height: 100%; display: block; }
.car-map .route {
  stroke-dasharray: 420; stroke-dashoffset: 420;
}
.phase-2 .car-map, .phase-3 .car-map { opacity: 1; }
.phase-2 .car-map .route, .phase-3 .car-map .route {
  animation: drawroute 1.2s ease forwards .25s;
}
@keyframes drawroute { to { stroke-dashoffset: 0; } }
.car-map .pin { opacity: 0; }
.phase-2 .car-map .pin, .phase-3 .car-map .pin {
  animation: pindrop .4s ease forwards 1.25s;
}
@keyframes pindrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.car-map .car-dot { filter: drop-shadow(0 0 4px #26d9f0); }
.car-eta {
  position: absolute; right: 8px; top: 8px;
  background: rgba(10,12,16,.92); border: 1px solid rgba(255,255,255,.14);
  color: #f2f4f7; font-size: 11.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px; opacity: 0; transition: opacity .4s ease .9s;
}
.phase-2 .car-eta, .phase-3 .car-eta { opacity: 1; }

/* 이어받기 장면 확대 — 실제 기기 느낌 (2026-09-02 v2) */
#handoff.stagewrap { padding: 44px 34px 30px; }
.hgrid { grid-template-columns: 1.15fr 110px 1fr; gap: 26px; max-width: 960px; }
.cardev {
  min-height: 250px; border-radius: 18px;
  border: 6px solid #050608; box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.phone {
  min-height: 250px; border-radius: 26px;
  border: 6px solid #050608; box-shadow: 0 18px 50px rgba(0,0,0,.5);
  padding-top: 26px;
}
.phone::before {          /* 노치(다이내믹 아일랜드) */
  content: ""; position: absolute; top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 12px; border-radius: 999px; background: #000;
  border: 1px solid rgba(255,255,255,.06); z-index: 2;
}
.mini { height: 168px; }
.mini .speed { font-size: 30px; }
.mini .speed small { font-size: 10px; }
.phone .toast { font-size: 12.5px; bottom: 12px; }
.car-eta { font-size: 13px; padding: 6px 12px; }
.pulse { width: 110px; }
@keyframes travel {
  0% { transform: translate(-6px, -50%); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translate(108px, -50%); opacity: 0; }
}
.hsteps { margin-top: 30px; gap: 34px; }
.hstep { font-size: 14.5px; }
@media (max-width: 720px) {
  .hgrid { grid-template-columns: 1fr; }
  .pulse { width: 60px; }
}

/* 실제 화면 클립 */
.realclip { max-width: 860px; margin: 30px auto 0; }
.realclip video {
  width: 100%; display: block; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 50px rgba(46,140,255,.08);
}
.realclip figcaption {
  text-align: center; color: var(--subtle); font-size: 13px; margin-top: 12px;
}

/* 내 차 정보 — 실제 앱 캡처 (2026-09-01) */
.mockshot { display: flex; justify-content: center; }
.mockshot img {
  width: 100%; max-width: 290px; height: auto;
  border-radius: 26px; border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 50px rgba(38,217,240,.07);
}

/* 등급 카드 — 가격·추천 배지 (2026-09-02) */
.card .price { color: var(--cyan); font-size: 15px; font-weight: 650; margin: 6px 0 10px; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.grid .card.featured { border-color: rgba(38,217,240,.45); box-shadow: 0 0 0 1px rgba(38,217,240,.25), 0 24px 60px rgba(38,217,240,.10); }
.grid .card .badge { position: absolute; top: 14px; right: 14px; background: var(--cyan); color: #06141a; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }

/* 애프터블로우 대형 섹션 (2026-09-02) */
.afterblow { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.afterblow .kicker { color: var(--cyan); font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.afterblow .copy p.lede2 { color: var(--subtle); font-size: 16px; margin-bottom: 18px; }
.afterblow ul { list-style: none; }
.afterblow ul li { padding: 7px 0 7px 28px; position: relative; color: var(--text); font-size: 15px; }
.afterblow ul li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.afterblow .note { margin-top: 14px; }
.ab-visual { display: flex; justify-content: center; }
.ab-card { width: 100%; max-width: 360px; background: var(--card); border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px; padding: 18px 18px 16px; box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 50px rgba(38,217,240,.08); }
.ab-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ab-head .fan { color: var(--cyan); animation: ab-spin 2.4s linear infinite; flex: none; }
.ab-head b { display: block; font-size: 15px; }
.ab-head small { color: var(--subtle); font-size: 12px; }
.ab-head .toggle { margin-left: auto; width: 44px; height: 26px; border-radius: 13px; background: var(--cyan); position: relative; flex: none; }
.ab-head .toggle::after { content: ""; position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; }
.ab-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 14px 0 12px; }
.ab-step { text-align: center; font-size: 11.5px; color: var(--subtle); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ab-step .n { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.08); color: var(--text); }
.ab-step.on { color: var(--text); }
.ab-step.on .n { background: var(--cyan); color: #06141a; box-shadow: 0 0 0 4px rgba(38,217,240,.18); }
.ab-chips { display: flex; gap: 8px; justify-content: center; }
.ab-chips .chip { font-size: 12px; font-weight: 650; padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); color: var(--subtle); }
.ab-chips .chip.on { background: rgba(38,217,240,.14); border-color: rgba(38,217,240,.5); color: var(--text); }
@keyframes ab-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ab-head .fan { animation: none; } }
@media (max-width: 760px) { .afterblow { grid-template-columns: 1fr; } }

/* 등급 비교표 (2026-09-02) */
.cmpwrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: var(--card); }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14.5px; vertical-align: top; }
.cmp thead th { vertical-align: bottom; padding-top: 18px; position: relative; }
.cmp thead th b { display: block; font-size: 17px; margin-bottom: 4px; }
.cmp thead th .price { display: block; color: var(--cyan); font-weight: 650; font-size: 13.5px; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.cmp thead th .price span + span::before { content: " · "; }
.cmp thead th small { display: block; color: var(--subtle); font-size: 12px; font-weight: 400; line-height: 1.35; }
.cmp thead th .badge { position: absolute; top: 8px; right: 12px; background: var(--cyan); color: #06141a; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; }
.cmp td.c { text-align: center; color: rgba(255,255,255,.22); font-size: 15px; width: 18%; }
.cmp td.c.on { color: var(--cyan); font-weight: 800; }
.cmp th.featured, .cmp td.featured { background: rgba(38,217,240,.06); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody td:first-child { color: var(--text); }

/* 내 차 정보 HTML 목업 (2026-09-02, 캡처 대체) */
.carmock { width: 100%; max-width: 300px; background: #0a0d12; border-radius: 30px; padding: 18px 16px 16px;
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 50px rgba(38,217,240,.07); color: #e8edf2; font-size: 12.5px; }
.carmock .bar { height: 22px; display: flex; align-items: center; }
.carmock .bar .x { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; font-size: 14px; color: #fff; }
.carmock h3 { color: var(--cyan); font-size: 17px; margin: 10px 0 12px; font-weight: 700; }
.carmock .grp { background: rgba(255,255,255,.045); border-radius: 12px; padding: 4px 12px; margin-bottom: 10px; }
.carmock .g { color: var(--cyan); font-size: 11px; font-weight: 650; letter-spacing: .04em; padding: 8px 0 2px; }
.carmock .r { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.carmock .r:last-child { border-bottom: 0; }
.carmock .r span { color: rgba(232,237,242,.6); }
.carmock .r b { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.carmock .r b.a { color: var(--cyan); }

/* 내비 스크린샷 (2026-09-02) */
.shots .shots-h { text-align: center; font-size: 22px; margin: 34px 0 14px; }
.shots .pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-bottom: 16px; }
.shots .pair figure { margin: 0; }
.shots .pair figcaption { color: var(--subtle); font-size: 12.5px; text-align: center; margin-top: 8px; }
.shots .pair.portrait { grid-template-columns: repeat(auto-fit, minmax(220px, 300px)); justify-content: center; }
.shots .pair.portrait img { border-radius: 26px; }

/* ── 모바일: 비교표·세로 스크린샷 (뒤에 두어 기본 규칙을 이깁니다) ── */
@media (max-width: 540px) {
  /* 등급 비교표: 가로 스크롤 없이 한 화면에 */
  .cmp { min-width: 0; table-layout: fixed; }
  .cmp th, .cmp td { padding: 10px 6px; font-size: 12.5px; }
  .cmp thead th:first-child { width: 30%; }
  .cmp thead th b { font-size: 13.5px; margin-bottom: 2px; }
  .cmp thead th .price { font-size: 11px; }
  .cmp thead th .price span { display: block; }
  .cmp thead th .price span + span::before { content: none; }
  .cmp thead th small { display: none; }
  .cmp thead th .badge { position: static; display: inline-block; margin-bottom: 6px; font-size: 9px; padding: 2px 6px; }
  .cmp td.c { width: auto; font-size: 14px; }
  .shots .pair.portrait { grid-template-columns: 1fr; }
}

/* 강조 카드 — 속도 보정·터널 (2026-09-04) */
.grid .card.hi {
  grid-column: span 2;
  border-color: rgba(38,217,240,.55);
  background: linear-gradient(135deg, rgba(38,217,240,.14), rgba(38,217,240,.03) 45%, var(--card) 70%);
  box-shadow: 0 0 0 1px rgba(38,217,240,.15), 0 12px 40px rgba(38,217,240,.10);
}
.grid .card.hi h3 { font-size: 21px; color: #fff; margin-top: 6px; }
.grid .card.hi p { font-size: 15.5px; color: #cfd6de; line-height: 1.55; }
.hi-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .12em;
  color: #04131a; background: var(--cyan); border-radius: 999px; padding: 3px 10px;
}
@media (max-width: 720px) { .grid .card.hi { grid-column: span 1; } }

/* ── 강조 (2026-09-04) ── */
.hero .pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -6px 0 26px; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px;
  border: 1px solid rgba(38,217,240,.35); background: rgba(38,217,240,.08);
  color: #dff8fc; font-size: 14.5px; font-weight: 650; letter-spacing: -.01em;
}
.hero .pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
main section > .kicker { color: var(--cyan); font-size: 12px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
main section > .kicker + h2 { margin-top: 0; }
.grid .card.key { border-color: rgba(240,180,41,.5); background: linear-gradient(135deg, rgba(240,180,41,.12), rgba(240,180,41,.02) 50%, var(--card) 75%); box-shadow: 0 0 0 1px rgba(240,180,41,.12), 0 12px 40px rgba(240,180,41,.08); }
.grid .card.key h3 { color: #fff; margin-top: 6px; font-size: 17px; }
.grid .card.key p { color: #cfd6de; }
.hi-badge.gold { background: var(--gold); color: #1a1200; }
.cmp thead th .price span:first-child { color: #fff; font-size: 17px; font-weight: 750; }
.cmp thead th.featured .price span:first-child { color: var(--cyan); font-size: 20px; }
.cmp thead th.featured b { font-size: 19px; }
@media (max-width: 540px) { .hero .pill { font-size: 13px; padding: 6px 12px; } .cmp thead th.featured .price span:first-child { font-size: 16px; } }
.cmp thead th .price span { display: block; }
.cmp thead th .price span + span::before { content: none; }
.cmp thead th .price span + span { margin-top: 2px; }

/* ── 사진 (2026-09-04, Higgsfield 생성 · 로고 없는 일반 전기차) ── */
.hero.photo { padding: 84px 0 40px; min-height: 800px; display: flex; align-items: flex-start; }   /* 문구는 위, 폰(사진 하단 60~75%)은 아래로 보이게 */
.hero.photo .wrap { position: relative; z-index: 1; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img, .hero-photo video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; display: block; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,14,.62) 0%, rgba(10,11,14,.40) 30%, rgba(10,11,14,.10) 55%, rgba(10,11,14,.30) 85%, var(--bg) 100%),
    radial-gradient(70% 45% at 50% 22%, rgba(10,11,14,.45), transparent 100%);
}
.hero.photo::before, .hero.photo::after { z-index: 1; opacity: .7; }
.hero.photo h1 { text-shadow: 0 2px 24px rgba(0,0,0,.6); }
.hero.photo p { color: #c9d0d8; text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.hero.photo .pill { background: rgba(10,11,14,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero.photo .badge { background: rgba(18,20,26,.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

.grid .card.photo { padding-top: 0; }
.grid .card .ph { position: relative; margin: 0 -22px 16px; height: 168px; overflow: hidden; }
.grid .card.hi .ph { height: 236px; }
.grid .card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.grid .card.photo:hover .ph img { transform: scale(1.04); }
.grid .card .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,20,26,.05) 40%, rgba(18,20,26,.85) 90%, var(--card) 100%);
}
.grid .card.hi .ph::after { background: linear-gradient(180deg, rgba(10,11,14,.10) 30%, rgba(14,18,22,.9) 92%, #0f1418 100%); }
.grid .card.photo .hi-badge { position: relative; z-index: 1; }
.grid .card.photo h3 { margin-top: 6px; }
@media (max-width: 720px) {
  .hero.photo { padding: 64px 0 36px; min-height: 680px; }
  /* 좁은 화면: 사진을 위로 당겨 키워서 폰(사진 하단)이 문구 아래에 오게 */
  .hero-photo img { height: 130%; object-position: 50% 0; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(10,11,14,.66) 0%, rgba(10,11,14,.42) 40%, rgba(10,11,14,.12) 65%, rgba(10,11,14,.25) 92%, var(--bg) 100%); }
  .grid .card .ph, .grid .card.hi .ph { height: 160px; }
}

/* 애프터블로우 강조 카드 — 초록 (2026-09-05). 새 기능=시안, 핵심=금빛, 애프터블로우=초록 */
.grid .card.ab { border-color: rgba(126,217,87,.5); background: linear-gradient(135deg, rgba(126,217,87,.12), rgba(126,217,87,.02) 50%, var(--card) 75%); box-shadow: 0 0 0 1px rgba(126,217,87,.12), 0 12px 40px rgba(126,217,87,.08); }
.grid .card.ab h3 { color: #fff; margin-top: 6px; font-size: 17px; }
.grid .card.ab p { color: #cfd6de; }
.hi-badge.lime { background: var(--lime); color: #0d1a08; }

/* 해외 단일 플랜 카드 (2026-09-07 — 14일 체험 뒤 유료 한 가지) */
.plan { border: 1px solid rgba(38,217,240,.28); border-radius: 18px; background: var(--card); display: grid; grid-template-columns: minmax(220px, 1fr) 1.6fr; gap: 0; overflow: hidden; }
.plan-head { position: relative; padding: 26px 22px 22px; background: rgba(38,217,240,.06); border-right: 1px solid rgba(255,255,255,.07); }
.plan-head .badge { position: static; border: 0; display: inline-block; margin-bottom: 14px; background: var(--cyan); color: #06141a; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.plan-head .badge::before { content: none; }
.plan-head b { display: block; font-size: 22px; letter-spacing: -.01em; margin-bottom: 6px; }
.plan-head .trial { margin: 0 0 14px; font-size: 16px; color: var(--text); line-height: 1.4; }
.plan-head .price { display: block; color: var(--cyan); font-weight: 700; font-size: 18px; font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.plan-head .price span + span::before { content: " · "; }
.plan-head small { display: block; color: var(--subtle); font-size: 13px; line-height: 1.4; }
.plan-feats { list-style: none; margin: 0; padding: 18px 22px; columns: 2; column-gap: 22px; }
.plan-feats li { break-inside: avoid; padding: 7px 0 7px 22px; position: relative; font-size: 14.5px; color: var(--text); border-bottom: 1px solid rgba(255,255,255,.06); }
.plan-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
@media (max-width: 720px) {
  .plan { grid-template-columns: 1fr; }
  .plan-head { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .plan-feats { columns: 1; }
}
/* 두 등급 비교표는 열을 넓게 */
.cmp.cols2 td.c { width: 24%; }
.cmp.cols2 thead th:not(:first-child) { min-width: 200px; }

/* 사용 설명서 (2026-09-07) */
.doc.manual p { color: var(--subtle); font-size: 15px; line-height: 1.6; margin: 8px 0; }
.doc.manual ol.steps { padding-left: 0; list-style: none; counter-reset: st; margin: 6px 0 10px; }
.doc.manual ol.steps li { counter-increment: st; position: relative; padding: 6px 0 6px 38px; color: var(--text); font-size: 15px; line-height: 1.55; }
.doc.manual ol.steps li::before { content: counter(st); position: absolute; left: 0; top: 6px; width: 26px; height: 26px; border-radius: 50%; background: var(--cyan); color: #06141a; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.doc.manual a.pdf { color: var(--cyan); font-weight: 600; text-decoration: none; border: 1px solid rgba(38,217,240,.35); border-radius: 999px; padding: 6px 14px; display: inline-block; }
@media print { .doc.manual ol.steps li::before { background: #111; color: #fff; } }
/* 설명서 스크린샷 */
.doc.manual .shots { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 10px 0 14px; }
.doc.manual .shots.two { grid-template-columns: 1fr 1fr; }
.doc.manual figure { margin: 0; }
.doc.manual figure img { width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); display: block; }
.doc.manual figure.portrait img { max-width: 300px; margin: 0 auto; }
.doc.manual .shots.two figure.portrait img { max-width: 260px; }
.doc.manual a.pdf.other { border-color: rgba(255,255,255,.18); color: var(--text); margin-left: 6px; }
.doc.manual .hint { display: block; margin-top: 8px; color: var(--subtle); font-size: 13px; }
@media (max-width: 640px) { .doc.manual .shots.two { grid-template-columns: 1fr; } }
@media print { .doc.manual figure.portrait img { max-width: 240px; } .doc.manual .shots.two { grid-template-columns: 1fr 1fr; } }
