:root {
  --bg-black: #03080e;
  --bg-dark: #06101a;
  --bg-navy: #081827;
  --bg-card: rgba(7, 17, 27, 0.78);
  --bg-card-soft: rgba(255, 255, 255, 0.045);

  --gold-deep: #995514;
  --gold: #b86c1f;
  --gold-mid: #cf852c;
  --gold-bright: #d99536;
  --gold-soft: #f0c36e;
  --gold-light: #fff0d2;

  --white: #ffffff;
  --muted: #b9c4cf;
  --muted-soft: #8794a3;
  --line: rgba(217, 149, 54, 0.28);
  --line-strong: rgba(217, 149, 54, 0.56);
  --shadow: rgba(0, 0, 0, 0.5);

  --max-width: 1500px;
  --desktop-gutter: clamp(64px, 5.5vw, 112px);
  --hyve-header-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 8, 14, 0.9), rgba(3, 8, 14, 0.94)),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: 1800px auto;
  background-attachment: fixed;
  background-position: center top;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 149, 54, 0.12), transparent 32%),
    radial-gradient(circle at 18% 30%, rgba(33, 92, 130, 0.18), transparent 28%),
    radial-gradient(circle at 52% 68%, rgba(217, 149, 54, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(3, 8, 14, 0.2), rgba(3, 8, 14, 0.8));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.05), rgba(3, 8, 14, 0.55) 45%, rgba(3, 8, 14, 0.82)),
    radial-gradient(circle at 90% 12%, rgba(217, 149, 54, 0.1), transparent 24%),
    radial-gradient(circle at 8% 72%, rgba(217, 149, 54, 0.08), transparent 28%);
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(var(--max-width), calc(100% - (var(--desktop-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 8, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 149, 54, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.brand img {
  width: 138px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(217, 149, 54, 0.16));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 1.6vw, 30px);
  min-width: 0;
}

.main-nav a {
  text-decoration: none;
  color: #f3f6fa;
  font-size: clamp(0.84rem, 0.85vw, 0.98rem);
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a span {
  color: var(--gold-bright);
  margin-left: 4px;
}

.main-nav a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
}

.nav-login,
.nav-signup {
  min-width: 104px;
  min-height: 44px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 850;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-login::before,
.nav-signup::before,
.btn::before,
.mini-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.42), transparent 10%),
    radial-gradient(circle at 88% 84%, rgba(217, 149, 54, 0.35), transparent 12%);
  opacity: 0.95;
}

.nav-login::after,
.nav-signup::after,
.btn::after,
.mini-btn::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -22%;
  width: 34%;
  height: 170%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.04) 65%,
    transparent 100%
  );
  transform: rotate(16deg);
  opacity: 0.45;
}

.nav-login {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.nav-signup {
  color: #100d08;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-soft) 14%,
    var(--gold-bright) 38%,
    var(--gold-mid) 68%,
    var(--gold-deep) 100%
  );
  border: 1px solid rgba(217, 149, 54, 0.92);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 10px 26px rgba(184, 108, 31, 0.22);
}

.nav-login:hover,
.nav-signup:hover {
  transform: translateY(-2px);
}

/* =========================================================
   MAIN BACKGROUND CONTINUITY
   ========================================================= */

.site-main {
  position: relative;
  overflow: hidden;
}

.site-main::before {
  content: "";
  position: absolute;
  inset: 620px -8% 0 -8%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.2) 0%, rgba(3, 8, 14, 0.72) 22%, rgba(3, 8, 14, 0.35) 58%, rgba(3, 8, 14, 0.9) 100%),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: 1650px auto;
  background-repeat: repeat-y;
  background-position: center top;
  opacity: 0.48;
}

.site-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 149, 54, 0.14), transparent 24%),
    radial-gradient(circle at 14% 46%, rgba(217, 149, 54, 0.08), transparent 22%),
    radial-gradient(circle at 74% 78%, rgba(217, 149, 54, 0.09), transparent 26%);
}

.site-main > section {
  position: relative;
  z-index: 1;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 0 0 34px;
}

.page-honeycomb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.96) 0%, rgba(3, 8, 14, 0.78) 42%, rgba(3, 8, 14, 0.42) 100%),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.94;
}

.page-honeycomb-bg::after {
  content: "";
  position: absolute;
  inset: auto -6% 0 -6%;
  height: 270px;
  background:
    radial-gradient(circle at 70% 30%, rgba(217, 149, 54, 0.22), transparent 36%),
    linear-gradient(180deg, transparent, rgba(3, 8, 14, 0.82));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(540px, 1.16fr);
  align-items: start;
  gap: clamp(28px, 4vw, 62px);
}

.hero-copy {
  max-width: 620px;
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(184, 108, 31, 0.18);
}

.line-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.line-glow::after {
  content: "";
  width: 42px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  box-shadow: 0 0 16px rgba(217, 149, 54, 0.78);
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 4.3vw, 4.95rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 950;
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 2px 0 rgba(0,0,0,0.25),
    0 3px 0 rgba(0,0,0,0.18),
    0 10px 18px rgba(0,0,0,0.38);
}

.hero-copy h1 span {
  display: block;
  color: #c97823;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow:
    0 1px 0 rgba(255, 237, 210, 0.18),
    0 2px 0 rgba(117, 64, 17, 0.58),
    0 3px 0 rgba(92, 49, 10, 0.42),
    0 10px 18px rgba(0,0,0,0.34);
  filter: none;
}

.hero-description {
  max-width: 600px;
  color: #d7dee7;
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.58;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

.btn,
.mini-btn,
.text-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn {
  min-height: 52px;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-soft) 16%,
    var(--gold-bright) 40%,
    var(--gold-mid) 70%,
    var(--gold-deep) 100%
  );
  color: #0c0b08;
  border: 1px solid rgba(217, 149, 54, 0.94);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 18px 36px rgba(184, 108, 31, 0.18);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(217, 149, 54, 0.72);
  background: rgba(3, 8, 14, 0.38);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 10px 26px rgba(0,0,0,0.2);
}

.btn:hover,
.mini-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn-outline:hover {
  background: rgba(217, 149, 54, 0.09);
}

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
  max-width: 620px;
  overflow: visible;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: max-content;
}

.stat-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 36px;
  filter: drop-shadow(0 0 12px rgba(217, 149, 54, 0.28));
}

.stat-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.stat-item span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  white-space: nowrap;
}

/* =========================================================
   HERO HONEYCOMB CLUSTER
   ========================================================= */

.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 18px;
}

.honeycomb-cluster {
  position: relative;
  width: 760px;
  height: 590px;
  margin: 0;
  overflow: visible;
  transform: scale(0.88);
  transform-origin: top left;
}

.hex-tile {
  position: absolute;
  overflow: hidden;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  border: 1px solid rgba(217, 149, 54, 0.58);
  background: rgba(3, 8, 14, 0.82);
  box-shadow:
    0 0 0 1px rgba(217, 149, 54, 0.18),
    0 0 22px rgba(217, 149, 54, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hex-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,0.78) 0 1px, transparent 10px),
    radial-gradient(circle at 88% 26%, rgba(255,245,225,0.66) 0 1px, transparent 10px),
    radial-gradient(circle at 8% 74%, rgba(217,149,54,0.7) 0 1px, transparent 11px),
    radial-gradient(circle at 92% 82%, rgba(255,255,255,0.45) 0 1px, transparent 10px),
    linear-gradient(135deg, rgba(217, 149, 54, 0.18), transparent 34%);
  pointer-events: none;
}

.hex-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex-icon {
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(240, 195, 110, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 237, 210, 0.14),
    0 0 28px rgba(217, 149, 54, 0.34),
    inset 0 0 18px rgba(217, 149, 54, 0.08);
}

.hex-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 14%, rgba(255,255,255,0.95) 0 1px, transparent 10px),
    radial-gradient(circle at 88% 18%, rgba(255,245,225,0.88) 0 1px, transparent 11px),
    radial-gradient(circle at 10% 84%, rgba(217,149,54,0.9) 0 1px, transparent 12px),
    radial-gradient(circle at 92% 86%, rgba(255,255,255,0.7) 0 1px, transparent 11px),
    linear-gradient(135deg, rgba(217, 149, 54, 0.16), transparent 34%);
}

.hex-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  background: transparent;
  filter:
    drop-shadow(0 0 10px rgba(217, 149, 54, 0.42))
    drop-shadow(0 0 18px rgba(217, 149, 54, 0.18));
}

/* HERO POSITIONS - final spacing */

.top-icon {
  width: 88px;
  height: 78px;
  top: 0;
  left: 255px;
  z-index: 7;
}

.handshake-main {
  width: 170px;
  height: 148px;
  top: 34px;
  left: 392px;
  z-index: 6;
}

.right-icon {
  width: 126px;
  height: 110px;
  top: 184px;
  left: 290px;
  z-index: 5;
}

.skyline-main {
  width: 250px;
  height: 216px;
  top: 248px;
  left: 470px;
  z-index: 6;
}

.businesswoman-main {
  width: 172px;
  height: 150px;
  top: 430px;
  left: 190px;
  z-index: 5;
}

.workspace-main {
  width: 168px;
  height: 146px;
  top: 540px;
  left: 555px;
  z-index: 5;
}

.profile-main {
  width: 132px;
  height: 116px;
  top: 600px;
  left: 305px;
  z-index: 6;
}

.meeting-main {
  width: 148px;
  height: 128px;
  top: 500px;
  left: 405px;
  z-index: 4;
}

/* =========================================================
   3D POP FOR MAJOR WHITE HEADINGS
   ========================================================= */

.section-heading h2,
.feature-copy h2,
.system-card h2,
.pilot-copy h2,
.about-preview-grid h2,
.contact-box h2,
.audience-card h2 {
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 2px 0 rgba(0,0,0,0.26),
    0 3px 0 rgba(0,0,0,0.18),
    0 10px 20px rgba(0,0,0,0.34);
}

/* =========================================================
   STRONG GOLD RING BOX STYLE
   ========================================================= */

.audience-card,
.step-card,
.system-card,
.pilot-box,
.trusted-box,
.contact-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.audience-card::before,
.step-card::before,
.system-card::before,
.pilot-box::before,
.trusted-box::before,
.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(217, 149, 54, 0.52),
    inset 0 0 0 2px rgba(255, 255, 255, 0.02),
    0 0 22px rgba(217, 149, 54, 0.12);
  z-index: 2;
}

.audience-card::after,
.step-card::after,
.system-card::after,
.pilot-box::after,
.trusted-box::after,
.contact-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 4% 10%, rgba(255,255,255,0.8) 0 1px, transparent 12px),
    radial-gradient(circle at 96% 12%, rgba(255,243,224,0.58) 0 1px, transparent 13px),
    radial-gradient(circle at 8% 92%, rgba(217,149,54,0.68) 0 1px, transparent 13px),
    radial-gradient(circle at 94% 88%, rgba(255,255,255,0.44) 0 1px, transparent 12px);
  opacity: 0.65;
  z-index: 2;
}

/* =========================================================
   AUDIENCE CARDS
   ========================================================= */

.audience-section {
  position: relative;
  z-index: 3;
  padding: 8px 0 46px;
}

.audience-section::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto;
  height: 180px;
  background: linear-gradient(180deg, rgba(3, 8, 14, 0), rgba(3, 8, 14, 0.76));
  pointer-events: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  min-height: 190px;
  border-radius: 12px;
  border: 1px solid rgba(217, 149, 54, 0.36);
  background: rgba(3, 8, 14, 0.78);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}

.audience-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card > .audience-bg {
  z-index: 0;
}

.audience-card .audience-card-content {
  z-index: 3;
}

.audience-card::after {
  background:
    radial-gradient(circle at 4% 10%, rgba(255,255,255,0.8) 0 1px, transparent 12px),
    radial-gradient(circle at 96% 12%, rgba(255,243,224,0.58) 0 1px, transparent 13px),
    radial-gradient(circle at 8% 92%, rgba(217,149,54,0.68) 0 1px, transparent 13px),
    radial-gradient(circle at 94% 88%, rgba(255,255,255,0.44) 0 1px, transparent 12px),
    linear-gradient(90deg, rgba(3, 8, 14, 0.94) 0%, rgba(3, 8, 14, 0.78) 42%, rgba(3, 8, 14, 0.18) 100%),
    radial-gradient(circle at 88% 28%, rgba(217, 149, 54, 0.15), transparent 24%);
}

.audience-card-content {
  position: relative;
  max-width: 520px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.card-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  border: 1px solid rgba(217, 149, 54, 0.56);
  background: rgba(3, 8, 14, 0.68);
  box-shadow: 0 0 14px rgba(217, 149, 54, 0.12);
}

.card-icon img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.audience-card h2 {
  margin-bottom: 2px;
  font-size: 1.5rem;
}

.audience-card h3 {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.audience-card p {
  margin-bottom: 16px;
  color: #d0d8e2;
  font-size: 0.9rem;
}

.mini-btn {
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-soft) 18%,
    var(--gold-bright) 42%,
    var(--gold-mid) 72%,
    var(--gold-deep) 100%
  );
  color: #0b0a08;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.82rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 10px 24px rgba(184, 108, 31, 0.16);
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
  position: relative;
  padding: 34px 0 36px;
}

.how-section::before {
  content: "";
  position: absolute;
  inset: -40px -6% -40px -6%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 10%, rgba(217, 149, 54, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(3, 8, 14, 0.62), rgba(3, 8, 14, 0.32), rgba(3, 8, 14, 0.68));
  pointer-events: none;
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  letter-spacing: -0.03em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 116px;
  padding: 22px 22px 20px 92px;
  border: 1px solid rgba(217, 149, 54, 0.38);
  border-radius: 10px;
  background: rgba(7, 17, 27, 0.76);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.step-number {
  position: absolute;
  top: 24px;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  font-weight: 900;
  z-index: 3;
}

.step-card img {
  position: absolute;
  top: 60px;
  left: 18px;
  width: 42px;
  height: 42px;
  object-fit: contain;
  z-index: 3;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 3;
}

.step-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */

.feature-strip {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.62), rgba(3, 8, 14, 0.76)),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: cover;
  background-position: center;
}

.split-feature-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
}

.feature-copy h2,
.profile-system-section h2,
.pilot-copy h2,
.about-preview-grid h2,
.contact-box h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.feature-copy p,
.profile-system-section p,
.pilot-copy p,
.about-preview-grid p,
.contact-box p {
  color: var(--muted);
  font-size: 1rem;
}

.floating-honeycombs {
  position: relative;
  min-height: 360px;
}

.mini-hex {
  position: absolute;
  overflow: hidden;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  box-shadow:
    0 0 20px rgba(217, 149, 54, 0.18),
    0 0 0 1px rgba(217, 149, 54, 0.18);
}

.mini-hex:nth-child(1) {
  width: 225px;
  height: 198px;
  top: 40px;
  left: 16px;
}

.mini-hex:nth-child(2) {
  width: 292px;
  height: 252px;
  top: 132px;
  left: 226px;
  z-index: 2;
}

.mini-hex:nth-child(3) {
  width: 225px;
  height: 198px;
  top: 30px;
  left: 452px;
}

.mini-hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   PROFILE SYSTEM
   ========================================================= */

.profile-system-section {
  padding: 92px 0;
  background: rgba(3, 8, 14, 0.74);
}

.profile-system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.system-card {
  padding: 36px;
  border-radius: 18px;
  border: 1px solid rgba(217, 149, 54, 0.36);
  background: rgba(7, 17, 27, 0.78);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.system-card > * {
  position: relative;
  z-index: 3;
}

.system-card ul {
  margin: 22px 0;
  padding-left: 20px;
  color: #d4dce5;
}

.system-card li {
  margin-bottom: 10px;
}

.text-link {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 900;
}

/* =========================================================
   PILOT
   ========================================================= */

.pilot-section {
  padding: 88px 0;
}

.pilot-box {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(217, 149, 54, 0.36);
  border-radius: 22px;
  background: rgba(7, 17, 27, 0.78);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.pilot-box > * {
  position: relative;
  z-index: 3;
}

.pilot-visual {
  overflow: hidden;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}

.pilot-visual img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

/* =========================================================
   TRUSTED
   ========================================================= */

.trusted-section {
  padding: 0 0 70px;
}

.trusted-box {
  padding: 26px 34px 34px;
  border: 1px solid rgba(217, 149, 54, 0.36);
  border-radius: 14px;
  background: rgba(7, 17, 27, 0.72);
  text-align: center;
}

.trusted-box > * {
  position: relative;
  z-index: 3;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.trusted-logos span {
  color: #d5dce6;
  letter-spacing: 0.18em;
  font-weight: 900;
  opacity: 0.86;
}

/* =========================================================
   ABOUT PREVIEW
   ========================================================= */

.about-preview-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.78), rgba(3, 8, 14, 0.92)),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: cover;
  background-position: center;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  overflow: hidden;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  box-shadow: 0 0 40px rgba(217, 149, 54, 0.18);
}

.about-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding: 86px 0 96px;
  background: rgba(3, 8, 14, 0.84);
}

.contact-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 44px;
  border: 1px solid rgba(217, 149, 54, 0.36);
  border-radius: 20px;
  background: rgba(7, 17, 27, 0.72);
}

.contact-box > * {
  position: relative;
  z-index: 3;
}

.email {
  color: var(--gold-bright) !important;
  font-weight: 900;
  font-size: 1.3rem !important;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 26px;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.9), rgba(0, 0, 0, 0.96)),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: cover;
  background-position: center bottom;
  border-top: 1px solid rgba(217, 149, 54, 0.22);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(217, 149, 54, 0.11), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(217, 149, 54, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(3, 8, 14, 0.98), rgba(3, 8, 14, 0.82), rgba(3, 8, 14, 0.96));
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  left: 50%;
  top: -120px;
  width: 720px;
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(217, 149, 54, 0.18), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) 0.65fr 0.75fr 0.85fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 180px;
  max-height: 84px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(217, 149, 54, 0.14));
}

.footer-tagline {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-description {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.footer-contact p {
  margin: 0 0 8px;
  color: var(--muted);
}

.footer-email {
  color: var(--gold-bright) !important;
  font-weight: 900;
}

.footer-pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 149, 54, 0.32);
  border-radius: 999px;
  background: rgba(217, 149, 54, 0.075);
  color: #dce4ed;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-pilot-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px rgba(217, 149, 54, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 149, 54, 0.16);
  color: var(--muted-soft);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

/* =========================================================
   DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1440px) and (min-width: 901px) {
  :root {
    --desktop-gutter: clamp(50px, 4.8vw, 84px);
    --max-width: 1400px;
  }

  .nav-wrap {
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 18px;
    min-height: 66px;
  }

  .brand img {
    width: 118px;
    max-height: 54px;
  }

  .main-nav {
    gap: clamp(12px, 1.2vw, 20px);
  }

  .main-nav a {
    font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  }

  .nav-login,
  .nav-signup {
    min-width: 90px;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.85rem;
  }

  .hero-layout {
    grid-template-columns: minmax(350px, 0.84fr) minmax(500px, 1.16fr);
    gap: 22px;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero-copy h1 {
    font-size: clamp(2.95rem, 4.05vw, 4.45rem);
  }

  .hero-description {
    max-width: 540px;
    font-size: 0.98rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-item img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .stat-item strong {
    font-size: 0.98rem;
  }

  .stat-item span {
    font-size: 0.66rem;
  }

  .hero-visual {
    min-height: 555px;
    padding-top: 14px;
    justify-content: flex-start;
  }

  .honeycomb-cluster {
    width: 760px;
    height: 590px;
    transform: scale(0.79);
    transform-origin: top left;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.1fr 0.7fr 0.8fr 0.9fr;
    gap: 32px;
  }

  .floating-honeycombs {
    min-height: 330px;
  }

  .mini-hex:nth-child(1) {
    width: 200px;
    height: 176px;
    top: 44px;
    left: 10px;
  }

  .mini-hex:nth-child(2) {
    width: 250px;
    height: 216px;
    top: 128px;
    left: 188px;
  }

  .mini-hex:nth-child(3) {
    width: 200px;
    height: 176px;
    top: 34px;
    left: 400px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  :root {
    --desktop-gutter: 36px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 36px));
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .brand,
  .main-nav,
  .nav-actions {
    justify-content: center;
    justify-self: center;
  }

  .brand img {
    width: 142px;
    max-height: 58px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 430px;
    padding-top: 0;
    justify-content: center;
  }

  .honeycomb-cluster {
    width: 760px;
    height: 590px;
    margin: 0 auto;
    transform: scale(0.56);
    transform-origin: top center;
  }

  .hero-stats,
  .audience-grid,
  .steps-grid,
  .split-feature-grid,
  .profile-system-grid,
  .pilot-box,
  .about-preview-grid,
  .trusted-logos {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    gap: 16px;
  }

  .stat-item {
    background: rgba(7, 17, 27, 0.62);
    border: 1px solid rgba(217, 149, 54, 0.14);
    border-radius: 12px;
    padding: 10px;
  }

  .floating-honeycombs {
    min-height: auto;
  }

  .mini-hex:nth-child(1),
  .mini-hex:nth-child(2),
  .mini-hex:nth-child(3) {
    position: relative;
    top: auto;
    left: auto;
    width: min(360px, 100%);
    height: 300px;
    margin: 0 auto 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  body {
    font-size: 16px;
    background-attachment: scroll;
  }

  .container {
    width: min(100% - 48px, 680px);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    min-height: auto;
    background: rgba(5, 16, 31, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 149, 54, 0.14);
    transform: translateY(0);
    transition:
      transform 0.28s ease,
      background 0.28s ease,
      box-shadow 0.28s ease;
    will-change: transform;
  }

  .site-header.header-hidden {
    transform: translateY(-110%);
  }

  .site-header.header-solid {
    background: rgba(5, 16, 31, 0.97);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }

  .nav-wrap {
    width: min(100% - 48px, 680px);
    min-height: auto;
    padding: 18px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: 116px;
    max-height: 54px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .main-nav a {
    font-size: 0.92rem;
    line-height: 1.1;
    text-align: center;
  }

  .nav-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .nav-login,
  .nav-signup {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  main {
    padding-top: var(--hyve-header-height);
  }

  .hero-section {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
    text-align: center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }

  .eyebrow {
    white-space: normal;
    letter-spacing: 0.1em;
  }

  .line-glow {
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-description {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    max-width: 420px;
    min-height: 300px;
    margin: 0 auto;
    justify-content: center;
  }

  .honeycomb-cluster {
    width: 760px;
    height: 590px;
    transform: scale(0.35);
    transform-origin: top center;
    margin: 0 auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .audience-card-content {
    padding: 24px;
    flex-direction: column;
  }

  .step-card {
    padding-left: 74px;
  }

  .feature-strip,
  .profile-system-section,
  .pilot-section,
  .about-preview-section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .system-card,
  .pilot-box,
  .contact-box {
    padding: 26px;
  }

  .site-footer {
    padding: 56px 0 24px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand img {
    width: 158px;
    max-height: 76px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column a {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 9px;
  }

  .footer-pilot-badge {
    justify-content: center;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .container,
  .nav-wrap {
    width: min(100% - 42px, 420px);
  }

  .brand img {
    width: 104px;
    max-height: 48px;
  }

  .main-nav {
    gap: 10px 18px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .nav-login,
  .nav-signup {
    min-height: 50px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 12vw, 2.85rem);
  }

  .hero-description {
    font-size: 0.96rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .line-glow::after {
    width: 34px;
  }

  .hero-visual {
    max-width: 340px;
    min-height: 250px;
  }

  .honeycomb-cluster {
    transform: scale(0.29);
    transform-origin: top center;
  }

  .feature-copy h2,
  .profile-system-section h2,
  .pilot-copy h2,
  .about-preview-grid h2,
  .contact-box h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {
  .container,
  .nav-wrap {
    width: min(100% - 34px, 340px);
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .feature-copy h2,
  .profile-system-section h2,
  .pilot-copy h2,
  .about-preview-grid h2,
  .contact-box h2 {
    font-size: 1.55rem;
  }

  .system-card,
  .pilot-box,
  .contact-box {
    padding: 22px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }
}
/* =========================================================
   WORKER SIGNUP PAGE
   ========================================================= */

.worker-signup-main {
  position: relative;
  overflow: hidden;
}

.worker-signup-main .container {
  width: min(var(--max-width), calc(100% - (var(--desktop-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Worker Hero ---------- */

.worker-hero-section {
  position: relative;
  min-height: auto;
  padding: 28px 0 0;
}

.worker-hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 390px;
}

.worker-hero-copy {
  position: relative;
  z-index: 5;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 22px;
  text-align: center;
}

.worker-hero-copy .eyebrow,
.worker-hero-copy .line-glow {
  justify-content: center;
  text-align: center;
}

.worker-hero-copy h1 {
  max-width: 960px;
  margin: 0 auto 22px;
  color: #c97823;
  font-size: clamp(3.3rem, 5.15vw, 6.05rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 950;
  text-shadow:
    0 1px 0 rgba(255, 237, 210, 0.22),
    0 2px 0 rgba(117, 64, 17, 0.7),
    0 3px 0 rgba(92, 49, 10, 0.55),
    0 12px 22px rgba(0, 0, 0, 0.42);
}

.worker-hero-description {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #d7dee7;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.68;
}

.worker-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.worker-hero-actions .btn {
  min-width: 290px;
}

.worker-profile-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 58px;
}

.worker-profile-tags span {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.worker-hero-visual {
  position: absolute;
  inset: 0;
  min-height: auto;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.worker-hex-card {
  position: absolute;
  overflow: hidden;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  border: 1px solid rgba(217, 149, 54, 0.62);
  background: rgba(3, 8, 14, 0.78);
  box-shadow:
    0 0 0 1px rgba(217, 149, 54, 0.18),
    0 0 34px rgba(217, 149, 54, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.worker-hex-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,0.72) 0 1px, transparent 11px),
    radial-gradient(circle at 88% 26%, rgba(255,245,225,0.5) 0 1px, transparent 11px),
    radial-gradient(circle at 8% 74%, rgba(217,149,54,0.58) 0 1px, transparent 12px),
    linear-gradient(135deg, rgba(217,149,54,0.18), transparent 38%);
}

.worker-hex-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worker-hex-main {
  width: 145px;
  height: 128px;
  top: 48px;
  left: 9%;
  right: auto;
  z-index: 3;
}

.worker-hex-side {
  width: 145px;
  height: 128px;
  top: 48px;
  right: 9%;
  left: auto;
  z-index: 3;
}

.worker-hex-small {
  display: grid;
  place-items: center;
  background: rgba(3, 8, 14, 0.24);
  border-color: transparent;
  box-shadow: none;
}

.worker-hex-small::after {
  display: none;
}

.worker-hex-small img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(217, 149, 54, 0.42))
    drop-shadow(0 0 18px rgba(217, 149, 54, 0.18));
}

.worker-hex-top,
.worker-hex-mid,
.worker-hex-bottom {
  top: auto;
  bottom: 24px;
  left: 50%;
  right: auto;
  z-index: 4;
}

.worker-hex-top {
  width: 62px;
  height: 54px;
  transform: translateX(-116px);
}

.worker-hex-mid {
  width: 66px;
  height: 58px;
  transform: translateX(-32px);
}

.worker-hex-bottom {
  width: 68px;
  height: 60px;
  transform: translateX(56px);
}

/* ---------- Worker Form Section ---------- */

.worker-signup-section {
  position: relative;
  padding: 8px 0 110px;
  margin-top: -10px;
  background:
    linear-gradient(180deg, rgba(3,8,14,0.66), rgba(3,8,14,0.9)),
    url("assets/hero/hero-honeycomb-bg.png");
  background-size: cover;
  background-position: center;
}

.worker-signup-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  margin-top: 0;
}

.worker-guidance-card,
.worker-signup-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(217, 149, 54, 0.38);
  border-radius: 18px;
  background: rgba(7, 17, 27, 0.78);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

.worker-guidance-card::before,
.worker-signup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(217, 149, 54, 0.52),
    inset 0 0 0 2px rgba(255, 255, 255, 0.02),
    0 0 22px rgba(217, 149, 54, 0.12);
  z-index: 2;
}

.worker-guidance-card::after,
.worker-signup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 4% 10%, rgba(255,255,255,0.8) 0 1px, transparent 12px),
    radial-gradient(circle at 96% 12%, rgba(255,243,224,0.58) 0 1px, transparent 13px),
    radial-gradient(circle at 8% 92%, rgba(217,149,54,0.68) 0 1px, transparent 13px),
    radial-gradient(circle at 94% 88%, rgba(255,255,255,0.44) 0 1px, transparent 12px),
    linear-gradient(135deg, rgba(217,149,54,0.06), transparent 38%);
  opacity: 0.7;
  z-index: 2;
}

.worker-guidance-card > *,
.worker-signup-card > * {
  position: relative;
  z-index: 3;
}

.worker-guidance-card {
  padding: 34px;
  position: sticky;
  top: 104px;
}

.worker-signup-card {
  padding: 38px;
}

.worker-guidance-card h2,
.worker-signup-card h2 {
  margin-bottom: 16px;
  color: #c97823;
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow:
    0 1px 0 rgba(255, 237, 210, 0.22),
    0 2px 0 rgba(117, 64, 17, 0.7),
    0 3px 0 rgba(92, 49, 10, 0.55),
    0 12px 22px rgba(0, 0, 0, 0.42);
}

.worker-guidance-card p {
  color: #d7dee7;
  font-size: 0.98rem;
  line-height: 1.65;
}

.worker-step-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.worker-step-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(217,149,54,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.worker-step-list strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217,149,54,0.68);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.82rem;
}

.worker-step-list span {
  color: #e8edf3;
  font-weight: 800;
  font-size: 0.92rem;
}

.worker-notice-box {
  padding: 22px;
  border: 1px solid rgba(217,149,54,0.32);
  border-radius: 14px;
  background: rgba(217,149,54,0.075);
}

.worker-notice-box h3 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 1rem;
}

.worker-notice-box p {
  margin: 0;
  font-size: 0.9rem;
}

.worker-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.worker-field {
  margin-bottom: 20px;
}

.worker-field label {
  display: block;
  margin-bottom: 8px;
  color: #eef4fa;
  font-size: 0.88rem;
  font-weight: 850;
}

.worker-field input,
.worker-field select,
.worker-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(217, 149, 54, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 0 0 1px rgba(82, 43, 8, 0.55),
    0 0 18px rgba(217,149,54,0.08);
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.worker-field input::placeholder,
.worker-field textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.worker-field select option {
  color: #111;
}

.worker-field input:focus,
.worker-field select:focus,
.worker-field textarea:focus {
  border-color: var(--gold-soft);
  background: rgba(255,255,255,0.09);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 0 0 3px rgba(217,149,54,0.18),
    0 0 24px rgba(217,149,54,0.16);
}

.worker-field textarea {
  min-height: 135px;
  resize: vertical;
}

.worker-field input[type="file"] {
  padding: 12px;
  cursor: pointer;
}

.worker-field small {
  display: block;
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.worker-full {
  width: 100%;
}

.worker-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  color: #d7dee7;
  font-size: 0.92rem;
  line-height: 1.5;
}

.worker-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--gold-bright);
}

.worker-submit-btn {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.worker-login-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.worker-login-note a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 900;
}

/* ---------- Worker Responsive ---------- */

@media (max-width: 1440px) and (min-width: 901px) {
  .worker-hero-grid {
    min-height: 374px;
  }

  .worker-hero-copy h1 {
    font-size: clamp(3rem, 5vw, 5.3rem);
  }

  .worker-hex-main,
  .worker-hex-side {
    width: 128px;
    height: 112px;
    top: 52px;
  }

  .worker-hex-main {
    left: 6%;
  }

  .worker-hex-side {
    right: 6%;
  }

  .worker-profile-tags {
    margin-bottom: 54px;
  }
}

@media (max-width: 1100px) {
  .worker-hero-grid {
    min-height: 430px;
  }

  .worker-hero-copy {
    max-width: 760px;
  }

  .worker-hex-main {
    left: 4%;
  }

  .worker-hex-side {
    right: 4%;
  }

  .worker-signup-layout {
    grid-template-columns: 1fr;
  }

  .worker-guidance-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .worker-signup-main .container {
    width: min(var(--max-width), calc(100% - 36px));
  }

  .worker-hero-section {
    padding-top: 42px;
  }

  .worker-hex-main,
  .worker-hex-side {
    display: none;
  }

  .worker-hero-grid {
    min-height: auto;
  }

  .worker-profile-tags {
    margin-bottom: 72px;
  }

  .worker-signup-section {
    padding-top: 34px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .site-header .brand img {
    width: 116px;
    max-height: 54px;
  }

  .worker-signup-main .container {
    width: min(100% - 48px, 680px);
  }

  .worker-hero-section {
    padding: 36px 0 42px;
    text-align: center;
  }

  .worker-hero-copy {
    padding-top: 0;
  }

  .worker-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .worker-hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .worker-profile-tags {
    margin-bottom: 20px;
  }

  .worker-hero-visual {
    display: none;
  }

  .worker-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .worker-form-grid {
    grid-template-columns: 1fr;
  }

  .worker-guidance-card,
  .worker-signup-card {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .worker-signup-main .container {
    width: min(100% - 42px, 420px);
  }

  .worker-hero-copy h1 {
    font-size: clamp(2.05rem, 12vw, 3rem);
  }

  .worker-guidance-card,
  .worker-signup-card {
    padding: 22px;
  }
}
/* =========================================================
   WORKER HERO ASSET PLACEMENT FINAL FIX
   ========================================================= */

.worker-hex-main {
  width: 118px !important;
  height: 104px !important;
  top: 38px !important;
  left: 4.5% !important;
  right: auto !important;
  z-index: 3 !important;
}

.worker-hex-side {
  width: 128px !important;
  height: 112px !important;
  top: 38px !important;
  right: 4.5% !important;
  left: auto !important;
  z-index: 3 !important;
}
/* =========================================================
   WORKER HERO SIDE ASSET SPACING TWEAK
   Worker signup page only
   ========================================================= */

.worker-signup-main .worker-hex-main {
  top: 26px !important;
  left: 3.2% !important;
}

.worker-signup-main .worker-hex-side {
  top: 26px !important;
  right: 3.2% !important;
}
