/* Jobster landing — editorial / sticker look, RTL */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --paper: #FAF4E8;
  --ink: #16130E;
  --coral: #FF4B33;
  --yellow: #FFC93C;
  --green: #0FA36B;
  --card: #FFFDF7;
  --muted: #5C564A;
  --b: 2px solid var(--ink);
  --hard: 5px 5px 0 var(--ink);
  --hard-sm: 3px 3px 0 var(--ink);
  --radius: 18px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Rubik', system-ui, sans-serif; background: var(--paper); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { line-height: 1.15; font-weight: 800; }
a { text-decoration: none; color: inherit; }
em { font-style: normal; background: linear-gradient(transparent 58%, var(--yellow) 58%); padding: 0 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: var(--b); border-radius: 14px; padding: 12px 22px; font-weight: 700; font-size: 15.5px;
  background: var(--card); box-shadow: var(--hard-sm); transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn.big { padding: 16px 28px; font-size: 17px; }
.btn-primary { background: var(--coral); color: #fff; }
.btn-outline { background: var(--card); color: var(--ink); }
.btn-light { background: var(--yellow); color: var(--ink); box-shadow: var(--hard); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 26px;
  padding: 13px clamp(18px, 5vw, 60px); background: var(--paper);
  border-bottom: var(--b);
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-size: 21px; font-weight: 900; }
.nav-logo img { border-radius: 8px; }
.nav-links { display: flex; gap: 22px; margin-inline-start: auto; font-weight: 600; font-size: 15px; }
.nav-links a { border-bottom: 3px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--coral); }
.nav-cta { margin-inline-start: 8px; padding: 10px 18px; }
@media (max-width: 760px) { .nav-links { display: none; } .nav-cta { margin-inline-start: auto; } }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px;
  padding: clamp(40px, 7vw, 90px) clamp(18px, 5vw, 60px) 50px; max-width: 1200px; margin: 0 auto;
}
.hero-text h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 900; margin: 20px 0; letter-spacing: -.02em; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 54ch; }
.hero-sub strong { color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; font-size: 13.5px; font-weight: 600; }
.hero-trust span { background: var(--card); border: var(--b); border-radius: 999px; padding: 6px 13px; box-shadow: var(--hard-sm); }
.pill {
  display: inline-block; background: var(--yellow); border: var(--b); border-radius: 999px;
  padding: 7px 15px; font-size: 13.5px; font-weight: 700; box-shadow: var(--hard-sm); transform: rotate(-1.5deg);
}
.pill.purple { background: #CDE6FF; transform: rotate(1deg); }
.pill.orange { background: var(--coral); color: #fff; transform: rotate(-1deg); }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 30px; gap: 16px; }
  .hero-phone { order: 2; padding: 28px 0 12px; }
  .hero-phone .phone { width: 250px; height: 486px; }
  .hero-ctas .btn { width: 100%; }
}

/* phone mockup */
.hero-phone { position: relative; display: flex; justify-content: center; padding: 20px 0; }
.phone {
  width: 290px; height: 560px; background: var(--ink); border-radius: 42px; padding: 11px;
  box-shadow: 9px 9px 0 var(--ink), 9px 9px 0 2px var(--ink); transform: rotate(-3deg);
  outline: var(--b);
}
.phone-notch { position: absolute; top: 21px; left: 50%; transform: translateX(-50%); width: 96px; height: 20px; background: var(--ink); border-radius: 999px; z-index: 2; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 33px; background: var(--paper); overflow: hidden; padding: 50px 12px 12px; }
.p-banner {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; background: var(--yellow);
  border: var(--b); border-radius: 13px; padding: 8px 12px; font-size: 11.5px; margin-bottom: 10px;
  box-shadow: var(--hard-sm); animation: bob 3.4s ease-in-out infinite;
}
.p-banner b { font-size: 12px; }
.p-banner span { width: 100%; color: #4a4436; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.p-card {
  position: absolute; inset: 116px 14px 82px; background: var(--card); border-radius: 20px;
  border: var(--b); box-shadow: var(--hard); overflow: hidden;
}
.p-card-back1 { transform: translateY(-9px) scale(.965); opacity: .75; }
.p-card-back2 { transform: translateY(-18px) scale(.93); opacity: .45; }
.p-card-head { position: relative; background: #FFE9A8; border-bottom: var(--b); font-size: 44px; text-align: center; padding: 26px 0 14px; }
.p-dist { position: absolute; top: 10px; inset-inline-start: 10px; background: var(--card); border: 2px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 700; padding: 3px 8px; }
.p-card-body { padding: 14px; display: flex; flex-direction: column; gap: 5px; }
.p-card-body b { font-size: 17px; font-weight: 800; }
.p-card-body i { font-style: normal; color: var(--muted); font-size: 12.5px; }
.p-card-body em { background: none; color: var(--green); font-weight: 800; font-size: 13.5px; }
.p-tags { display: flex; gap: 5px; margin-top: 4px; }
.p-tags u { text-decoration: none; background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; padding: 2px 8px; font-size: 10.5px; font-weight: 700; }
.p-stamp {
  position: absolute; top: 16px; inset-inline-start: 12px; color: var(--green); border: 3px solid var(--green);
  background: var(--card); border-radius: 8px; padding: 2px 10px; font-weight: 900; font-size: 16px; transform: rotate(-12deg);
  animation: stampIn 2.8s ease-in-out infinite;
}
@keyframes stampIn { 0%, 55% { opacity: 0; transform: rotate(-12deg) scale(1.6); } 70%, 90% { opacity: 1; transform: rotate(-12deg) scale(1); } 100% { opacity: 0; } }
.p-actions { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 26px; }
.p-actions s, .p-actions b {
  text-decoration: none; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 20px; background: var(--card); border: var(--b); box-shadow: var(--hard-sm);
}
.p-actions s { color: var(--coral); }
.p-actions .p-like { background: var(--green); color: #fff; }
.float-chip {
  position: absolute; background: var(--card); border: var(--b); border-radius: 999px; padding: 10px 16px;
  font-weight: 700; font-size: 14px; box-shadow: var(--hard); animation: bob 4s ease-in-out infinite;
}
.fc1 { top: 2%; inset-inline-start: 2%; animation-delay: .4s; transform: rotate(3deg); background: var(--yellow); }
.fc2 { bottom: 24%; inset-inline-start: 0; animation-delay: 1.1s; transform: rotate(-2deg); }
.fc3 { top: 38%; inset-inline-end: 0; animation-delay: 1.8s; transform: rotate(2deg); }
@media (max-width: 500px) { .fc2, .fc3 { display: none; } }

/* ---------- ticker ---------- */
.ticker { background: var(--ink); color: var(--paper); border-block: var(--b); overflow: hidden; padding: 12px 0; }
.ticker-track { display: flex; gap: 40px; width: max-content; animation: tick 26s linear infinite; font-weight: 600; font-size: 15px; white-space: nowrap; }
.ticker-track b { color: var(--yellow); font-weight: 800; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px;
  max-width: 1100px; margin: 40px auto 0; padding: 0 clamp(18px, 5vw, 60px);
}
.stats div { background: var(--card); border: var(--b); border-radius: var(--radius); padding: 18px 20px; text-align: center; box-shadow: var(--hard-sm); }
.stats div:nth-child(odd) { transform: rotate(-.7deg); }
.stats div:nth-child(even) { transform: rotate(.7deg); background: #FFF3CE; }
.stats b { display: block; font-size: 21px; font-weight: 900; color: var(--coral); }
.stats span { color: var(--muted); font-size: 13.5px; }

/* ---------- sections ---------- */
.section { max-width: 1100px; margin: 0 auto; padding: clamp(50px, 8vw, 100px) clamp(18px, 5vw, 60px) 0; }
.section h2 { font-size: clamp(28px, 3.6vw, 42px); text-align: center; font-weight: 900; }
.section-sub { text-align: center; color: var(--muted); margin: 12px auto 40px; max-width: 52ch; font-size: 17px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.step { position: relative; background: var(--card); border: var(--b); border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--hard); }
.step:nth-child(2) { transform: rotate(.6deg); background: #FFF3CE; }
.step:nth-child(3) { transform: rotate(-.5deg); }
.step-num {
  position: absolute; top: -17px; inset-inline-start: 20px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--coral); color: #fff; border: var(--b); font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.step-emoji { font-size: 38px; margin-bottom: 10px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- buildings ---------- */
.buildings-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
@media (max-width: 900px) { .buildings-grid { grid-template-columns: 1fr; } }
.buildings h2 { text-align: start; margin: 16px 0 14px; }
.buildings p { color: var(--muted); }
.demo-notification {
  display: flex; gap: 12px; align-items: center; background: var(--yellow); border: var(--b);
  border-radius: 16px; padding: 15px 18px; margin: 18px 0; box-shadow: var(--hard);
  animation: bob 3.6s ease-in-out infinite;
}
.dn-emoji { font-size: 30px; }
.demo-notification b { display: block; font-size: 16px; }
.demo-notification span { font-size: 13.5px; color: #4a4436; }
.checks { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; font-weight: 600; font-size: 15px; }

.buildings-art {
  position: relative; height: 380px; background: #CDE6FF;
  border-radius: var(--radius); border: var(--b); box-shadow: var(--hard); overflow: hidden;
}
.buildings-art::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 64px; background: #B7D9A8; border-top: var(--b); }
.tower { position: absolute; bottom: 78px; font-size: 90px; filter: drop-shadow(4px 4px 0 rgba(22, 19, 14, .25)); z-index: 1; }
.t1 { inset-inline-start: 8%; font-size: 74px; bottom: 74px; }
.t2 { inset-inline-start: 38%; font-size: 106px; }
.t3 { inset-inline-end: 8%; font-size: 82px; }
.radar {
  position: absolute; bottom: 30px; left: 50%; width: 30px; height: 30px; border-radius: 50%;
  background: #ff4b3366; border: 2px solid var(--coral); animation: radar 2.2s ease-out infinite; z-index: 2;
}
@keyframes radar { from { transform: translateX(-50%) scale(.4); opacity: 1; } to { transform: translateX(-50%) scale(7); opacity: 0; } }
.you { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); font-size: 34px; text-align: center; z-index: 3; }
.you span { display: block; font-size: 12px; font-weight: 800; background: var(--card); border: 2px solid var(--ink); border-radius: 999px; padding: 1px 8px; margin-top: 2px; }
.ping {
  position: absolute; top: 26px; inset-inline-start: 30%; background: var(--card); border: var(--b); border-radius: 999px;
  padding: 10px 16px; font-weight: 700; font-size: 14px; box-shadow: var(--hard); transform: rotate(-2deg);
  animation: bob 3s ease-in-out infinite; z-index: 3;
}

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.feature { background: var(--card); border: var(--b); border-radius: var(--radius); padding: 24px; box-shadow: var(--hard-sm); transition: transform .15s, box-shadow .15s; }
.feature:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.feature:nth-child(2), .feature:nth-child(5) { background: #FFF3CE; }
.f-emoji { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; font-size: 26px; background: var(--paper); border: var(--b); border-radius: 14px; }
.feature h3 { font-size: 17.5px; margin: 12px 0 6px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- employers ---------- */
.emp-card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  background: var(--ink); color: var(--paper); border-radius: 26px; padding: clamp(28px, 5vw, 56px);
  border: var(--b); box-shadow: 8px 8px 0 var(--coral);
}
@media (max-width: 900px) { .emp-card { grid-template-columns: 1fr; } }
.emp-card h2 { text-align: start; margin: 16px 0 12px; font-size: clamp(24px, 3vw, 34px); }
.emp-card h2 em { background: linear-gradient(transparent 58%, #ff4b3388 58%); }
.emp-card p { color: #C9C2B2; }
.emp-card .checks { color: var(--paper); }
.emp-card .btn { margin-top: 22px; box-shadow: 3px 3px 0 var(--yellow); border-color: var(--paper); }
.emp-card .btn:hover { box-shadow: 6px 6px 0 var(--yellow); }
.emp-mock { display: flex; flex-direction: column; gap: 12px; }
.emp-row {
  display: flex; align-items: center; gap: 14px; background: #262117; border: 2px solid #4a4436;
  border-radius: 16px; padding: 14px 16px;
}
.emp-row.match { border-color: var(--yellow); box-shadow: 3px 3px 0 var(--yellow); transform: rotate(-.6deg); }
.emp-row span { font-size: 30px; }
.emp-row div { flex: 1; }
.emp-row b { font-size: 15.5px; }
.emp-row i { display: block; font-style: normal; color: #C9C2B2; font-size: 13px; }
.emp-row u { text-decoration: none; font-size: 22px; }

/* ---------- faq ---------- */
.faq { max-width: 760px; padding-bottom: 20px; }
.faq h2 { margin-bottom: 30px; }
.faq details { background: var(--card); border: var(--b); border-radius: 16px; padding: 18px 22px; margin-bottom: 12px; box-shadow: var(--hard-sm); }
.faq details[open] { background: #FFF3CE; }
.faq summary { font-weight: 700; font-size: 16.5px; cursor: pointer; list-style: none; position: relative; padding-inline-end: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; inset-inline-end: 0; top: -4px; font-size: 26px; font-weight: 900; color: var(--coral); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin-top: 10px; font-size: 15px; }

/* ---------- final cta / footer ---------- */
.final-cta {
  text-align: center; background: var(--coral); color: #fff; margin: clamp(50px, 8vw, 100px) auto 0;
  max-width: 1100px; border: var(--b); border-bottom: none; border-radius: 26px 26px 0 0;
  padding: clamp(44px, 6vw, 70px) 24px;
}
.final-cta h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; }
.final-cta p { margin: 12px 0 26px; opacity: .95; font-size: 17px; }
.footer {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 26px clamp(18px, 5vw, 60px) 40px; color: var(--muted); font-size: 14px;
  border-top: var(--b);
}

/* role-closet mock tags */
.emp-row .tag-live, .emp-row .tag-off {
  font-size: 12px; font-weight: 800; border-radius: 999px; padding: 6px 11px; white-space: nowrap;
}
.emp-row .tag-live { background: #123829; color: #6ee7a8; border: 1px solid #1d5c41; }
.emp-row .tag-off { background: var(--yellow); color: var(--ink); border: 1px solid var(--ink); }
