/* =========================================================
   ReCu Homepage — Responsive (Mobile <768, Tablet 768–1023, Desktop ≥1024)
   ========================================================= */

:root {
  --c-bg: #ffffff;
  --c-text: #0F172A;
  --c-muted: #64748B;
  --c-line: #F1F5F9;
  --c-soft: #F8FAFC;
  --c-blue: #2563EB;
  --c-blue-d: #1D4ED8;
  --c-green: #22C55E;
  --c-red: #EF4444;
  --c-amber: #F59E0B;
  --c-dark: #0F172A;
  --c-dark-2: #1E293B;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.04);
  --shadow-lift: 0 12px 40px rgba(0,0,0,0.08);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .t-bar-fill { transition: none !important; }
}

/* ---------- Lift hover ---------- */
.lift { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.lift:hover { transform: translateY(-2px) scale(1.02); }
.lift:active { transform: scale(0.97); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 2px 12px rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.brand-mark.sm { width: 32px; height: 32px; border-radius: 9px; box-shadow: none; }
.brand-mark.lg { width: 56px; height: 56px; border-radius: 16px; box-shadow: 0 12px 40px rgba(37,99,235,0.4); }
.brand-mark span {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.brand-mark.sm span { font-size: 14px; }
.brand-mark.lg span { font-size: 28px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.03em;
  transition: color .4s;
}
.navbar.scrolled .brand-name { color: var(--c-blue); }
.navbar.scrolled .brand-mark { box-shadow: none; }
.brand-sub {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  transition: color .4s;
}
.navbar.scrolled .brand-sub { color: #94A3B8; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color .25s;
  padding: 4px 0;
}
.navbar.scrolled .nav-links a { color: #475569; }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--c-blue); }

.nav-cta {
  padding: 10px 20px !important;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all .25s;
}
.navbar.scrolled .nav-cta {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff !important;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: #fff;
  cursor: pointer;
}
.navbar.scrolled .nav-toggle { color: var(--c-text); }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 210;
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  border-bottom: 1px solid var(--c-line);
}
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--c-soft);
  color: #64748B;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.drawer-links { flex: 1; padding: 24px 16px; overflow-y: auto; }
.drawer-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px; font-weight: 600;
  color: var(--c-text);
  transition: background .2s, color .2s;
}
.drawer-links a:hover { background: var(--c-soft); color: var(--c-blue); }
.drawer-links .num {
  font-family: Inter, sans-serif;
  font-size: 11px; font-weight: 700;
  color: #CBD5E1;
  min-width: 20px;
}
.drawer-foot {
  padding: 16px 24px 32px;
  border-top: 1px solid var(--c-line);
}
.btn-primary.block { display: block; text-align: center; }
.drawer-tag {
  margin: 16px 0 0;
  text-align: center;
  font-size: 11px; color: #94A3B8;
}
@media (min-width: 768px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--c-blue);
  color: #fff;
  font-size: 15px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
  cursor: pointer;
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 96px 24px 80px;
  text-align: center;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.55) 40%, rgba(15,23,42,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
}
.hero-name {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 8vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-sub-en {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 1.3vw, 13px);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.25em;
  margin: 0 0 48px;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero-desc {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.break-sm { display: none; }
@media (min-width: 640px) { .break-sm { display: block; } }

.hero-cta {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center;
  margin-bottom: 64px;
}
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; gap: 16px; }
}

.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px;
}
@media (min-width: 640px) {
  .hero-stats { gap: 56px; }
}
.hero-stats > div { text-align: center; }
.hero-stats .num {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 6px;
}
.hero-stats .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 128px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: 96px 0; background: #fff; }
@media (min-width: 1024px) { .about { padding: 128px 0; } }

.section-head { margin-bottom: 56px; }
@media (min-width: 1024px) { .section-head { margin-bottom: 64px; } }
.section-head.center { text-align: center; }
.eyebrow {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.eyebrow.blue { color: var(--c-blue); }
.eyebrow.green { color: var(--c-green); }
.section-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.featured-card {
  position: relative;
  border-radius: 24px;
  background: var(--c-dark);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,23,42,0.15);
  margin-bottom: 80px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
@media (min-width: 768px) { .featured-card { flex-direction: row; } }

.featured-text {
  flex: 1;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
@media (min-width: 768px) { .featured-text { padding: 56px; } }
.chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,0.15);
  color: #93C5FD;
  font-size: 12px; font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}
.featured-text h3 {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.featured-text p {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.featured-image {
  position: relative;
  flex: 1;
  min-height: 240px;
}
.featured-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-grad-h, .featured-grad-v { position: absolute; inset: 0; }
.featured-grad-h { display: none; background: linear-gradient(to right, #0F172A 0%, transparent 50%); }
.featured-grad-v { background: linear-gradient(to top, #0F172A 0%, transparent 60%); }
@media (min-width: 768px) {
  .featured-image { min-height: 320px; }
  .featured-grad-h { display: block; }
  .featured-grad-v { display: none; }
}

.about-meta {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .about-meta { flex-direction: row; align-items: flex-end; }
}
.about-meta-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-blue);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.link-arrow span { transition: transform .25s; display: inline-block; }
.link-arrow:hover span { transform: translateX(4px); }

.value-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  padding: 32px;
  border-radius: 16px;
  background: #FAFBFF;
  border: 1px solid var(--c-line);
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.value-icon { margin-bottom: 24px; line-height: 0; }
.value-en {
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em;
}
.value-kr {
  margin: 0 0 16px;
  font-size: 13px; font-weight: 500;
}
.value-desc {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  padding: 96px 0;
  background: var(--c-soft);
}
@media (min-width: 1024px) { .features { padding: 128px 0; } }

.features-stack {
  display: flex; flex-direction: column;
  gap: 96px;
}
@media (min-width: 1024px) { .features-stack { gap: 144px; } }

.feature-row {
  display: flex; flex-direction: column;
  gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .feature-row { flex-direction: row; gap: 80px; }
  .feature-row.reverse { flex-direction: row-reverse; }
}
.feature-text { flex: 1; max-width: 520px; width: 100%; }
.feature-visual { flex: 1; width: 100%; }

.feature-num {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 64px; font-weight: 900;
  color: var(--c-line);
  line-height: 1;
  margin-bottom: 12px;
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.feature-sub {
  margin: 0 0 10px;
  font-size: 13px; font-weight: 600;
  color: var(--c-blue);
  letter-spacing: 0.02em;
}
.feature-title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.feature-desc {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.85;
}
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #475569;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--bg, #EFF6FF) no-repeat center / 10px 10px;
  background-image: var(--check);
  flex-shrink: 0;
}
.check-list[data-accent="#EF4444"] li { --bg: #FEF2F2; --check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6 L5 9 L10 3' fill='none' stroke='%23EF4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
.check-list[data-accent="#22C55E"] li { --bg: #F0FDF4; --check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6 L5 9 L10 3' fill='none' stroke='%2322C55E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
.check-list[data-accent="#2563EB"] li { --bg: #EFF6FF; --check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6 L5 9 L10 3' fill='none' stroke='%232563EB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
.check-list[data-accent="#F59E0B"] li { --bg: #FFFBEB; --check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6 L5 9 L10 3' fill='none' stroke='%23F59E0B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

.badge {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
}

/* ---- Visual cards (shared) ---- */
.vis-card {
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(145deg, #ffffff 0%, #FAFBFF 100%);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
}

/* ---- Temperature visual ---- */
.temp-card .t-lbl { margin: 0 0 10px; font-size: 12px; color: #94A3B8; font-weight: 500; text-align: center; }
.temp-card .t-num {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 52px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  text-align: center;
}
.temp-card .t-num span { font-size: 28px; color: var(--c-red); font-weight: 700; }
.temp-card .t-chip {
  display: inline-block; margin: 16px auto 0;
  padding: 6px 14px; border-radius: 999px;
  background: #F0FDF4; color: #16A34A;
  font-size: 11px; font-weight: 700;
}
.temp-card > .t-chip { display: block; width: fit-content; }
.t-bar {
  margin-top: 28px;
  width: 100%; height: 10px;
  border-radius: 999px;
  background: var(--c-line);
  overflow: hidden;
}
.t-bar-fill {
  display: block; height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563EB, #22C55E);
  transition: width 1.4s var(--ease) .2s;
}
.is-visible .t-bar-fill { width: var(--target); }
.t-scale {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: Inter, sans-serif;
  font-size: 10px; color: #CBD5E1; font-weight: 500;
}
.t-divider { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.t-recent-lbl { margin: 0 0 10px; font-size: 11px; color: #94A3B8; font-weight: 500; }
.t-list { list-style: none; padding: 0; margin: 0; }
.t-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
}
.t-list li > :first-child { color: var(--c-muted); }
.t-list .up { font-family: Inter, sans-serif; font-weight: 700; color: #16A34A; }

/* ---- Toggle visual ---- */
.toggle-card { display: flex; flex-direction: column; gap: 20px; }
.toggle-row {
  border-radius: 16px;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
}
.toggle-row.green { background: linear-gradient(135deg, #10B981, #059669); box-shadow: 0 6px 20px rgba(16,185,129,0.3); }
.toggle-row.blue  { background: linear-gradient(135deg, #0047FF, #0033CC); box-shadow: 0 6px 20px rgba(0,71,255,0.25); }
.toggle-row .t-row-name { margin: 0 0 4px; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.toggle-row .t-row-desc { margin: 0; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); }
.t-switch {
  width: 52px; height: 30px;
  border-radius: 999px;
  display: flex; align-items: center; padding: 0 3px;
}
.t-switch.on { background: rgba(255,255,255,0.4); justify-content: flex-end; }
.t-switch.off { background: rgba(255,255,255,0.2); justify-content: flex-start; }
.t-knob {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.t-switch.off .t-knob { opacity: 0.85; }
.toggle-foot {
  display: flex; align-items: center; gap: 8px;
  padding-top: 4px;
  font-size: 12px; color: #94A3B8;
}
.toggle-foot .dot { width: 8px; height: 8px; border-radius: 999px; background: #10B981; }

/* ---- Profile (Card UI) visual ---- */
.profile-card .pf-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pf-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px; font-weight: 700;
}
.pf-meta { flex: 1; }
.pf-name { margin: 0; font-size: 16px; font-weight: 700; color: var(--c-text); }
.pf-role { margin: 0; font-size: 12px; color: var(--c-muted); }
.hot { color: var(--c-red); font-weight: 700; }
.pf-status {
  padding: 4px 12px;
  border-radius: 999px;
  background: #F0FDF4; color: #16A34A;
  font-size: 11px; font-weight: 700;
}
.pf-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pf-skills span {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--c-soft);
  color: #475569;
  font-family: Inter, sans-serif;
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--c-line);
}
.pf-project {
  padding: 16px;
  border-radius: 12px;
  background: var(--c-soft);
  border: 1px solid var(--c-line);
}
.pf-project .lbl { margin: 0; font-size: 11px; color: #94A3B8; font-weight: 500; }
.pf-project .title { margin: 4px 0 3px; font-size: 14px; font-weight: 600; color: var(--c-text); }
.pf-project .meta { margin: 0; font-size: 12px; color: #94A3B8; }
.pf-thumbs { display: flex; gap: 8px; margin-top: 16px; }
.pf-thumbs span { flex: 1; height: 56px; border-radius: 8px; }

/* ---- Inbox visual ---- */
.inbox-card .tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.inbox-card .tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--c-soft);
  color: #94A3B8;
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--c-line);
}
.inbox-card .tab.active { background: var(--c-dark); color: #fff; border-color: transparent; }
.inbox-item {
  padding: 18px;
  border-radius: 12px;
  background: #FAFBFF;
  border: 1px solid var(--c-line);
  margin-bottom: 12px;
}
.inbox-item:last-child { margin-bottom: 0; }
.inbox-item .row1 { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.inbox-item .proj { margin: 0; font-size: 15px; font-weight: 600; color: var(--c-text); }
.inbox-item .row2 { margin: 0; font-size: 12px; color: var(--c-muted); }
.inbox-item .row3 { margin: 4px 0 0; font-size: 12px; color: #94A3B8; }
.badge-mini {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0; margin-left: 12px;
}
.badge-mini.ok { background: #F0FDF4; color: #16A34A; }
.badge-mini.new { background: #EFF6FF; color: var(--c-blue); }

/* =========================================================
   TARGET
   ========================================================= */
.target {
  padding: 96px 0;
  background: #fff;
}
@media (min-width: 1024px) { .target { padding: 128px 0; } }

.target-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .target-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .target-grid { gap: 32px; } }

.target-card {
  padding: 32px;
  border-radius: 24px;
  transition: transform .3s, box-shadow .3s;
}
@media (min-width: 1024px) { .target-card { padding: 40px; } }
.target-card.freelancer {
  background: linear-gradient(145deg, #FAFBFF 0%, #F0F4FF 100%);
  border: 1px solid #E0E7FF;
}
.target-card.company {
  background: linear-gradient(145deg, #F7FDF9 0%, #ECFDF5 100%);
  border: 1px solid #D1FAE5;
}
.target-card.freelancer:hover { box-shadow: 0 12px 40px rgba(37,99,235,0.08); transform: translateY(-4px); }
.target-card.company:hover { box-shadow: 0 12px 40px rgba(34,197,94,0.08); transform: translateY(-4px); }

.t-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.t-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.target-card.freelancer .t-card-icon { box-shadow: 0 4px 16px rgba(37,99,235,0.25); }
.target-card.company .t-card-icon { box-shadow: 0 4px 16px rgba(34,197,94,0.25); }
.t-card-head h3 {
  margin: 0;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.t-card-head p { margin: 0; font-size: 13px; color: var(--c-muted); }

.t-card-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.t-card-list li { display: flex; align-items: flex-start; gap: 16px; }
.t-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-top: 2px;
}
.t-card-list li > span:last-child {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  padding-top: 6px;
}

/* =========================================================
   DOWNLOAD
   ========================================================= */
.download {
  position: relative;
  padding: 112px 24px;
  background: var(--c-dark);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 1024px) { .download { padding: 144px 24px; } }
.dl-glow-blue {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, #2563EB, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
}
.dl-glow-green {
  position: absolute; bottom: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #22C55E, transparent 70%);
  opacity: 0.04;
  pointer-events: none;
}
.dl-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
}
.dl-logo {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 40px;
}
.dl-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.dl-name {
  font-family: Inter, sans-serif;
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.04em;
}
.dl-sub {
  font-family: Inter, sans-serif;
  font-size: 9px; font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
}
.dl-title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.dl-desc {
  margin: 0 auto 44px;
  max-width: 420px;
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.8;
}
.dl-badges {
  display: flex; flex-direction: column;
  gap: 16px; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .dl-badges { flex-direction: row; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  min-width: 168px;
}
.badge-pill .pill-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.badge-pill small { font-size: 10px; font-weight: 400; opacity: 0.85; letter-spacing: 0.02em; }
.badge-pill strong { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-dark);
  color: #fff;
}
.site-footer .container { padding-top: 48px; padding-bottom: 48px; }
.foot-top {
  display: flex; flex-direction: column;
  gap: 32px; align-items: flex-start;
}
@media (min-width: 768px) {
  .foot-top { flex-direction: row; justify-content: space-between; align-items: center; }
}
.foot-tag {
  display: none;
  margin-left: 16px; padding-left: 16px;
  font-size: 13px;
  color: #475569;
  border-left: 1px solid var(--c-dark-2);
}
@media (min-width: 640px) { .foot-tag { display: inline; } }

.foot-links {
  display: flex; align-items: center; gap: 24px;
}
@media (min-width: 768px) { .foot-links { gap: 32px; } }
.foot-links a {
  font-size: 13px;
  font-weight: 400;
  color: #64748B;
  transition: opacity .25s;
}
.foot-links a:hover { opacity: 0.8; }
.foot-links a.bold { color: #94A3B8; font-weight: 600; }

.foot-bottom {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--c-dark-2);
  display: flex; flex-direction: column;
  gap: 16px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .foot-bottom { flex-direction: row; } }
.copy { margin: 0; font-size: 12px; color: #475569; }

.foot-accent {
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #22C55E, #2563EB);
}

/* =========================================================
   BREAKPOINTS — show/hide nav vs drawer
   ========================================================= */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-inner { padding: 0 20px; }
  .container { padding: 0 20px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet: single-column hero stats stay tight, feature rows stack vertically */
  .feature-row, .feature-row.reverse { flex-direction: column; }
  .feature-text { max-width: 720px; }
}
