/* ================================================================
   RoadFloat — palette derived from the logo
   navy "Road" + cyan "Float" + royal-blue waves on white
   ================================================================ */

:root {
  /* Brand palette — sampled from logo_banner.png */
  --navy-900: #081a36;   /* deepest navy, body of "Road" letters at depth */
  --navy-800: #102046;   /* primary brand navy — exact "Road" text color */
  --navy-700: #1a3a6b;   /* mid-navy, gradient transition */
  --navy-500: #2c5fa3;   /* lighter navy, supporting */

  --foam-500: #00a8f0;   /* primary accent — "Float" cyan */
  --foam-400: #3cbef5;   /* lighter cyan, gradients */
  --foam-200: #b8e2f8;   /* pale sky for borders */
  --foam-50:  #e8f5fd;   /* very light sky tint for fills */

  --sand-300: #d6e6f5;   /* cool pale blue-grey (replaces warm sand) */
  --sand-100: #ebf3fb;   /* lighter pale blue */
  --sand-50:  #f5f9fd;   /* nearly white with cool cast */

  --coral-500: #f5a623;  /* warm gold for ratings & owner avatars */
  --coral-100: #fde4b8;  /* light gold tint */

  /* Neutrals */
  --ink: #0e1f33;
  --ink-soft: #34465c;
  --muted: #6a7a8c;
  --line: #e5e9f0;
  --line-soft: #eef1f6;
  --bg: #ffffff;
  --bg-soft: #fafbfc;

  /* System */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 1px rgba(10,37,64,.04);
  --shadow: 0 4px 14px rgba(10,37,64,.08), 0 1px 3px rgba(10,37,64,.05);
  --shadow-lg: 0 24px 60px -20px rgba(10,37,64,.25), 0 8px 24px -8px rgba(10,37,64,.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-brand: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--navy-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--foam-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 .5rem;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; margin-top: 1.4rem; }
p  { margin: 0 0 1rem; color: var(--ink-soft); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* band between sections */
.sepBand{
	height:10px;
	margin-top:30px;
	margin-bottom:30px;
	border-radius:3px;
	background-color:var(--navy-500);
}

/* font brand */
.fontBrand{
	font-family: var(--font-brand);
}

/* space above sections so anchor clicks end up in proper spot */
.anchorTop{
	scroll-margin-top: 80px;;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--navy-800);
  color: #fff;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy-800); color: #fff; }
.btn--primary:hover { background: var(--navy-700); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--navy-800); color: var(--navy-800); }
.btn--lg { padding: 14px 24px; font-size: 1rem; }
.btn--sm { padding: 7px 14px; font-size: 0.85rem; }
.btn--block { width: 100%; }

.link-muted { white-space:nowrap; color: var(--ink-soft); font-weight: 500; }
.link-muted:hover { color: var(--navy-800); }
.link-arrow { font-weight: 600; color: var(--navy-700); }
.link-arrow:hover { color: var(--foam-500); }


/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px 24px; 
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 700;
}
.brand:hover { color: var(--navy-700); }
.brand__mark {
  width: 32px; height: 32px;
  object-fit: contain;
  transition: opacity .15s ease, transform .15s ease;
}
.brand:hover .brand__mark { opacity: .85; transform: translateY(-1px); }
.brand__banner {
  height: 100px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: opacity .15s ease, transform .15s ease;
  margin-left:-20px;
}


.brand:hover .brand__banner { opacity: .85; transform: translateY(-1px); }
.brand__word { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.02em; font-weight: 700; }
.brand--light { color: #fff; }
.brand--light:hover { color: var(--foam-200); }

.nav {
  display: flex;
  gap: 26px;
  margin-left: 24px;
  font-weight: 500;
}
.nav a { white-space:nowrap; color: var(--ink-soft); font-size: 0.96rem; }
.nav a:hover { color: var(--navy-800); }

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 9px;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
}

.mobile-drawer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px var(--gutter) 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer a { font-weight: 600; color: var(--navy-800); padding: 8px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(60,190,245,.22), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0,120,224,.22), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__waves {
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  pointer-events: none;
}
.hero__waves svg { width: 100%; height: 100%; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) var(--gutter) clamp(72px, 11vw, 130px);
  padding-top:50px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--foam-400);
  margin-bottom: 14px;
}
.hero h1 { color: #fff; }
.hero__accent {
  background: linear-gradient(90deg, var(--foam-400), var(--sand-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero__signup {
  display: flex;
  gap: 10px;
  max-width: 520px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero__signup input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  font: inherit;
  color: #fff;
  outline: none;
  min-width: 0;
}
.hero__signup input::placeholder { color: rgba(255,255,255,0.55); }
.hero__signup--center {
  margin: 24px auto 0;
  background: rgba(255,255,255,0.06);
}

.hero__fineprint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
}

.hero__trust {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #fff;
}
.trust-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Hero preview card */
.hero__preview {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: end;
}
.preview-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  border: 1px solid rgba(255,255,255,0.4);
}
.preview-card--secondary {
  background: var(--sand-50);
  transform: rotate(1.4deg);
  max-width: 360px;
  padding: 14px 18px;
  margin-right: 24px;
}
.preview-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.preview-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--foam-500), var(--navy-700));
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.preview-card__name { font-weight: 700; color: var(--navy-900); }
.preview-card__meta { font-size: 0.85rem; color: var(--muted); }
.preview-card__rating { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; margin-bottom: 14px; }
.stars { color: var(--coral-500); letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); }
.preview-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.preview-card__job {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--foam-50);
  border: 1px solid var(--foam-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink);
  flex-wrap: wrap;
}
.preview-card__job .link-arrow { margin-left: auto; font-size: 0.85rem; }

.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: var(--foam-500); box-shadow: 0 0 0 4px rgba(0,168,240,.25); }
.dot--amber { background: var(--coral-500); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  margin-left: auto;
}
.badge--verified {
  background: var(--foam-50);
  color: var(--foam-500);
  border: 1px solid var(--foam-200);
}

.chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- Hero — owners variant ---------- */
.hero--owners {
  /* slightly different gradient mood — more cyan-leaning to differentiate from the pros hero */
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(60,190,245,.28), transparent 60%),
    radial-gradient(900px 500px at 110% 110%, rgba(0,120,224,.22), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-900) 100%);
}
.hero__inner--reverse { direction: rtl; }
.hero__inner--reverse > * { direction: ltr; }
.hero__inner--reverse .hero__preview { justify-items: start; }
.hero__inner--reverse .preview-card { transform: rotate(1.2deg); }
.hero__inner--reverse .preview-card--secondary { transform: rotate(-1.4deg); margin-right: 0; margin-left: 24px; }

/* Owner-side avatar — warm gold gradient instead of foam-to-navy */
.preview-card__avatar--warm {
  background: linear-gradient(135deg, var(--coral-500), var(--navy-700));
}

/* "3 bids" badge — warm gold variant */
.badge--bids {
  background: var(--coral-100);
  color: #8a5a0e;
  border: 1px solid #f4d99a;
}

/* Mini bid rows inside the preview card */
.mini-bid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 8px;
  font-size: 0.88rem;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.mini-bid--selected {
  border-color: var(--foam-500);
  background: var(--foam-50);
  box-shadow: 0 0 0 3px rgba(0,168,240,.15);
}
.mini-bid__name { color: var(--ink); font-weight: 600; }
.mini-bid__price { font-weight: 700; color: var(--navy-900); }
.mini-bid__rating { color: var(--muted); font-size: 0.8rem; }

/* ---------- Logo strip ---------- */
.logo-strip { background: #fff; border-bottom: 1px solid var(--line); }
.logo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 22px var(--gutter);
}
.logo-strip__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-strip__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ---------- Section heading ---------- */
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.05rem; color: var(--ink-soft); }

/* ---------- Categories ---------- */
.categories { 
	padding: clamp(72px, 10vw, 110px) 0; 
	padding-top:50px;
	background: var(--bg); 
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--foam-200);
}
.cat-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--foam-50);
  color: var(--foam-500);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.cat-card__icon svg { width: 22px; height: 22px; }
.cat-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.cat-card p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

/* ---------- How ---------- */
.how {
  background:
    linear-gradient(180deg, var(--sand-50), #fff);
  padding: clamp(72px, 10vw, 110px) 0;
  padding-top:50px;

}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step__num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--foam-500);
  margin-bottom: 10px;
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: 0.94rem; margin: 0; }

/* ---------- Demo / App shell ---------- */
.demo {
  background: var(--navy-900);
  color: #fff;
  padding: clamp(80px, 11vw, 120px) 0;
  padding-top:50px;
  position: relative;
  overflow: hidden;
}
.demo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(0,168,240,.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(184,226,248,.10), transparent 60%);
  pointer-events: none;
}
.demo .section-head { position: relative; z-index: 1; }
.demo .eyebrow { color: var(--foam-400); }
.demo h2, .demo .section-head p { color: #fff; }
.demo .section-head p { color: rgba(255,255,255,0.78); }

.app-shell {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.app-shell__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 0.78rem;
  color: var(--muted);
}
.app-dot { width: 10px; height: 10px; border-radius: 50%; background: #e3e6ec; }
.app-dot:nth-child(1) { background: #ff5f57; }
.app-dot:nth-child(2) { background: #ffbd2e; }
.app-dot:nth-child(3) { background: #28c840; }
.app-shell__url { margin-left: 14px; }

.app-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 14px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.app-tab {
  background: transparent;
  border: 0;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.app-tab:hover { color: var(--ink); }
.app-tab.is-active {
  color: var(--navy-800);
  border-bottom-color: var(--foam-500);
}

.app-body { background: var(--bg-soft); }
.app-view { display: none; }
.app-view.is-active { display: grid; }
.app-view[data-view="jobs"].is-active {
  grid-template-columns: 280px 1fr;
}
.app-view[data-view="job-detail"].is-active,
.app-view[data-view="profile"].is-active,
.app-view[data-view="post"].is-active {
  grid-template-columns: 1fr;
}

/* Sidebar */
.app-sidebar {
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.filter-block { margin-bottom: 18px; }
.filter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.filter-block select, .filter-block input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
.filter-checks { display: flex; flex-direction: column; gap: 6px; font-size: 0.92rem; color: var(--ink); }
.filter-checks label { display: flex; align-items: center; gap: 8px; }
.range { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--ink-soft); }

.app-main { padding: 22px; }
.app-main--full { padding: 28px clamp(20px, 4vw, 36px); }
.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.app-h { font-family: var(--font-body); font-size: 1rem; margin: 0; color: var(--ink); font-weight: 600; }
.sort { font-size: 0.88rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.sort select {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}

/* Job cards */
.job-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.job-card:hover { border-color: var(--foam-200); box-shadow: var(--shadow-sm); }
.job-card__lead { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.job-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 0 0 4px; color: var(--navy-900); }
.job-card__loc { font-size: 0.86rem; color: var(--muted); margin: 0 0 8px; }
.job-card__desc { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 14px; }
.job-card__time { font-size: 0.78rem; color: var(--muted); margin-left: auto; }
.job-card__foot {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.budget { font-size: 0.9rem; color: var(--ink); }
.bids { font-size: 0.8rem; color: var(--muted); }
.job-card__foot .btn { margin-left: auto; }

.trade-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--foam-50);
  color: var(--foam-500);
  border: 1px solid var(--foam-200);
}
.trade-pill--canvas   { background: #e8f5fd; color: #0078c8; border-color: #b8e2f8; }
.trade-pill--mech     { background: #fef0e8; color: #b85a1a; border-color: #ffd0bc; }
.trade-pill--delivery { background: #ebf3fb; color: #1a3a6b; border-color: #cfdcf2; }
.trade-pill--detail   { background: #fdf3df; color: #92711a; border-color: #f4e3b0; }

/* Job detail */
.back-link { display: inline-block; font-weight: 600; margin-bottom: 14px; color: var(--ink-soft); }
.back-link:hover { color: var(--navy-800); }
.job-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.job-detail__main h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 8px 0;
}
.job-detail__meta { font-size: 0.88rem; color: var(--muted); display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.meta-list { list-style: none; padding: 0; margin: 0 0 14px; }
.meta-list li { padding: 6px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.meta-list li strong { color: var(--ink); margin-right: 6px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.photo-grid--four { grid-template-columns: repeat(2, 1fr); }
.photo-tile {
  background: linear-gradient(135deg, var(--foam-50), var(--sand-50));
  border: 1px dashed var(--foam-200);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px;
}

.bid-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 90px;
  align-self: start;
}
.owner-card { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.owner-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-500), var(--sand-300));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid; place-items: center;
}
.owner-name { font-weight: 700; font-size: 0.95rem; }
.owner-meta { font-size: 0.8rem; color: var(--muted); }
.bid-panel__title { margin: 0 0 12px; font-weight: 700; }
.bid-form { display: grid; gap: 12px; }
.bid-form label { display: flex; flex-direction: column; gap: 4px; font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.bid-form input, .bid-form textarea, .bid-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  resize: vertical;
}
.bid-form input:focus, .bid-form textarea:focus { outline: none; border-color: var(--foam-500); box-shadow: 0 0 0 3px rgba(0,168,240,.18); }
.bid-form__note { font-size: 0.78rem; color: var(--muted); margin: 0; text-align: center; }

.bid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.bid-stats div { display: flex; flex-direction: column; }
.bid-stats strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-900); }
.bid-stats span { font-size: 0.75rem; color: var(--muted); }

/* Profile */
.profile { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.profile__hero { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); margin-bottom: 22px; }
.profile__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--foam-500), var(--navy-800));
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  display: grid; place-items: center;
}
.profile__id { flex: 1; min-width: 220px; }
.profile__name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--navy-900); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.profile__name .badge { margin-left: 0; }
.profile__sub { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }
.profile__rating { display: flex; gap: 8px; align-items: center; margin-top: 8px; font-size: 0.9rem; color: var(--ink-soft); flex-wrap: wrap; }
.profile__rating strong { font-weight: 700; color: var(--ink); }
.profile__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.profile__grid { display: grid; grid-template-columns: 1fr 280px; gap: 32px; }
.profile__side {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  align-self: start;
}
.kv { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.88rem; }
.kv:last-child { border-bottom: 0; }
.kv span { color: var(--muted); }
.kv strong { color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

.review { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.review:last-child { border-bottom: 0; }
.review__head { display: flex; gap: 10px; align-items: center; margin-bottom: 4px; font-size: 0.85rem; }
.review__by { color: var(--muted); }
.review p { font-size: 0.94rem; margin: 4px 0 0; }

/* Post a job */
.post-job { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); max-width: 760px; margin: 0 auto; }
.post-job h3 { font-family: var(--font-display); font-size: 1.55rem; margin-bottom: 6px; }
.post-job__sub { color: var(--ink-soft); margin-bottom: 22px; }
.post-form { display: grid; gap: 14px; }
.post-form label { display: flex; flex-direction: column; gap: 5px; font-weight: 500; font-size: 0.88rem; color: var(--ink-soft); }
.post-form input, .post-form select, .post-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.post-form textarea { resize: vertical; }
.post-form input:focus, .post-form select:focus, .post-form textarea:focus {
  outline: none; border-color: var(--foam-500); box-shadow: 0 0 0 3px rgba(0,168,240,.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-inline { flex-direction: row !important; align-items: center; gap: 10px !important; }
.checkbox-inline input { width: auto !important; }
.post-job__fine { font-size: 0.85rem; color: var(--muted); text-align: center; margin: 0; }

/* ---------- Owners section ---------- */
.owners {
  background: linear-gradient(180deg, #fff, var(--foam-50));
  padding: clamp(72px, 10vw, 110px) 0;
}
.owners__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.owners h2 { max-width: 460px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 8px; }
.check-list li { color: var(--ink); font-weight: 500; }
.owners__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.bid-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}
.bid-mock__head { font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.bid-mock__row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease, background .15s ease;
}
.bid-mock__row.is-selected {
  border-color: var(--foam-500);
  background: var(--foam-50);
  box-shadow: 0 0 0 3px rgba(0,168,240,.15);
}
.avatar-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--foam-500));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid; place-items: center;
}
.bid-mock__name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.bid-mock__price { font-weight: 700; color: var(--navy-900); }
.bid-mock__rating { font-size: 0.82rem; color: var(--muted); }
.bid-mock .btn { margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testimonials { 
	padding: clamp(72px, 10vw, 110px) 0; 
  	padding-top:50px;
	background: var(--bg); 
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.quote {
  background: var(--sand-50);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
  position: relative;
}


.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--navy-900);
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--foam-500), var(--navy-800));
  color: #fff;
  font-weight: 700;
  display: grid; place-items: center;
}

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-soft); 
	padding: clamp(72px, 10vw, 110px) 0; 
	padding-top:50px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan--featured {
  border-color: var(--foam-500);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff, var(--foam-50) 200%);
}
.plan__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--foam-500);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.plan h3 { font-size: 1.15rem; margin-bottom: 6px; }
.plan__price {
  font-family: var(--font-display);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 10px;
}
.plan__price span { font-size: 2.4rem; font-weight: 700; color: var(--navy-900); }
.plan__price small { font-size: 0.88rem; color: var(--muted); font-family: var(--font-body); }
.plan__sub { color: var(--ink-soft); font-size: 0.95rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.plan ul li { font-size: 0.92rem; color: var(--ink); padding-left: 22px; position: relative; }
.plan ul li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--foam-500);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.plan .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(72px, 10vw, 110px) 0; 
	padding-top:50px;
}
.faq__inner { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--foam-500);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 12px 0 0; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(900px 400px at 50% 100%, rgba(0,168,240,.25), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
  padding: clamp(72px, 10vw, 110px) 0;
  padding-top:50px;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.final-cta .hero__fineprint { color: rgba(255,255,255,0.6); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
  padding-top:30px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { color: #fff; margin-bottom: 6px; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-col div { color: rgba(255,255,255,0.65); font-size: 0.92rem; }


.footer-col a:hover { color: var(--foam-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--foam-500);
  color: var(--navy-900);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 0.75rem;
}

/* ================================================================
   Responsive
   ================================================================ */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__preview { justify-items: start; }
  .preview-card { max-width: 460px; }
  .preview-card--secondary { margin-right: 0; margin-left: 24px; }

  .owners__inner { grid-template-columns: 1fr; gap: 40px; }
  .job-detail { grid-template-columns: 1fr; }
  .bid-panel { position: static; }
  .profile__grid { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 24px; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .app-view[data-view="jobs"].is-active {
    grid-template-columns: 1fr;
  }
  .app-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }

  .form-row { grid-template-columns: 1fr; }
  .bid-mock__row { grid-template-columns: auto 1fr auto; }
  .bid-mock__rating { display: none; }

  .hero__trust { gap: 24px; }
  .trust-item strong { font-size: 1.3rem; }
  
  /* larger brand icon */
  .brand__banner{
  	height:125px;
  	width:auto;
  }
  
  
  /* less padding in top nav */
  .container.site-header__inner{
  	height:80px;
  	overflow:hidden;
  }
  
}

@media (max-width: 540px) {
  .announcement__inner { font-size: 0.78rem; gap: 6px; }
  .announcement__link { display: none; }

  .hero__signup { flex-direction: column; border-radius: var(--radius); padding: 12px; }
  .hero__signup input { padding: 12px; }
  .hero__signup .btn { width: 100%; }

  .preview-card { transform: none; }
  .preview-card--secondary { transform: none; margin-left: 0; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .app-shell__url { display: none; }
  .app-main, .app-sidebar { padding: 16px; }

  .photo-grid--four { grid-template-columns: 1fr 1fr; }
  

  
  
  
  
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
