:root {
  --ink: #09090f;
  --ink-soft: #111119;
  --ink-raised: #171721;
  --paper: #f5f6f8;
  --paper-soft: #eceef3;
  --white: #ffffff;
  --text: #12121a;
  --muted: #686a78;
  --muted-dark: #aaaabc;
  --line: rgba(17, 17, 25, 0.11);
  --line-dark: rgba(255, 255, 255, 0.1);
  --purple: #7442df;
  --purple-light: #b8a0ff;
  --purple-deep: #5d2fc5;
  --cyan: #59d7ff;
  --green: #45e0a8;
  --orange: #ff8b4b;
  --red: #ff6b78;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(20, 16, 42, 0.12);
  --shell: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body:has(dialog[open]) { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(89, 215, 255, 0.8);
  outline-offset: 3px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.06; }
em { color: var(--purple); font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 108px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-soft { background: var(--paper-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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.demo-bar {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 20px;
  background: #1b152a;
  color: #d9d1f4;
  border-bottom: 1px solid rgba(184, 160, 255, 0.16);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-align: center;
}
.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 139, 75, 0.12);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(9, 9, 15, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell { display: flex; min-height: 74px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.28), rgba(89, 215, 255, 0.08));
  border: 1px solid rgba(184, 160, 255, 0.45);
  border-radius: 13px;
  box-shadow: inset 0 0 24px rgba(139, 92, 246, 0.12), 0 0 28px rgba(139, 92, 246, 0.12);
  color: var(--white);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}
.brand-mark span { position: relative; z-index: 1; font-size: 12px; font-weight: 900; letter-spacing: -0.08em; }
.brand-mark b { position: absolute; z-index: 2; right: 5px; bottom: 1px; color: var(--cyan); font-size: 14px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { color: var(--white); font-size: 15px; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 4px; color: #9292a5; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 12px;
  color: #aaaabd;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}
.main-nav a:hover, .main-nav a.is-active { background: rgba(255, 255, 255, 0.055); color: var(--white); }
.main-nav .nav-cta {
  margin-left: 10px;
  padding: 10px 16px;
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(109, 60, 231, 0.28);
}
.main-nav .nav-cta:hover, .main-nav .nav-cta.is-active { background: #6232cc; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line-dark); border-radius: 12px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-grid, .pilot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 620px; height: 620px; top: -280px; left: 34%; background: radial-gradient(circle, rgba(139, 92, 246, 0.24), transparent 68%); }
.hero-glow-two { width: 520px; height: 520px; right: -200px; bottom: -250px; background: radial-gradient(circle, rgba(89, 215, 255, 0.12), transparent 70%); }
.hero-layout { position: relative; z-index: 1; display: grid; min-height: 646px; align-items: center; grid-template-columns: 1.02fr 0.98fr; gap: 88px; padding: 90px 0 86px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--purple-light); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--purple-deep); }
.hero h1 { max-width: 650px; margin-bottom: 26px; font-size: clamp(58px, 7vw, 92px); letter-spacing: -0.07em; }
.hero h1 em { background: linear-gradient(100deg, var(--purple-light), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 610px; margin-bottom: 32px; color: #b3b3c3; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--purple); color: var(--white); box-shadow: 0 14px 34px rgba(109, 60, 231, 0.3); }
.button-primary:hover { background: #9e76ff; box-shadow: 0 18px 40px rgba(109, 60, 231, 0.38); }
.button-ghost { background: rgba(255, 255, 255, 0.045); border-color: var(--line-dark); color: var(--white); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18); }
.button-whatsapp { background: #1fbd77; color: #071b13; }
.button-whatsapp:hover { background: #3ed792; }
.button-outline-danger { background: transparent; border-color: rgba(255, 107, 120, 0.32); color: #d54b59; }
.button-outline-danger:hover { background: rgba(255, 107, 120, 0.08); border-color: rgba(255, 107, 120, 0.55); }
.full-button { width: 100%; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin: 26px 0 0; padding: 0; list-style: none; color: #9292a5; font-size: 12px; }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust span { color: var(--green); }

.hero-console {
  position: relative;
  padding: 20px;
  background: linear-gradient(145deg, rgba(25, 22, 38, 0.94), rgba(13, 13, 21, 0.94));
  border: 1px solid rgba(184, 160, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.045);
}
.hero-console::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: 24px; box-shadow: 0 0 80px rgba(139, 92, 246, 0.16); }
.console-top, .signal-head, .console-footer, .job-card-top, .job-card-footer, .results-head { display: flex; align-items: center; justify-content: space-between; }
.console-top { padding: 3px 4px 18px; border-bottom: 1px solid var(--line-dark); }
.console-title { display: flex; align-items: center; gap: 11px; }
.console-title div { display: flex; flex-direction: column; line-height: 1.1; }
.console-title strong { color: var(--white); font-size: 13px; letter-spacing: 0.13em; }
.console-title small { margin-top: 5px; color: #7f7f90; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.console-orb { position: relative; width: 34px; height: 34px; border: 1px solid rgba(184, 160, 255, 0.4); border-radius: 50%; background: radial-gradient(circle at 36% 34%, #cebfff 0 6%, #7f55e8 18%, #26184b 55%, #11111a 75%); box-shadow: 0 0 24px rgba(139, 92, 246, 0.35); }
.console-orb::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 50%; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; background: rgba(69, 224, 168, 0.08); border: 1px solid rgba(69, 224, 168, 0.18); border-radius: 30px; color: #72e8bb; font-size: 9px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.live-badge i, .results-status i, .open-status i, .detail-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(69, 224, 168, 0.65); }
.signal-card { margin: 18px 0 12px; padding: 16px; background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 14px; }
.signal-head { margin-bottom: 12px; color: #a991ef; font-size: 9px; font-weight: 800; letter-spacing: 0.11em; }
.signal-head small { color: #777789; letter-spacing: normal; }
.signal-card > strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 14px; }
.signal-card p { margin-bottom: 0; color: #858596; font-size: 11px; }
.automation-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.automation-list li { display: grid; align-items: center; grid-template-columns: 28px 1fr 18px; gap: 10px; padding: 11px 12px; border: 1px solid var(--line-dark); border-radius: 12px; }
.automation-list li > span { color: #666678; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.automation-list li div { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.automation-list li strong { color: #ddddE8; font-size: 11px; }
.automation-list li small { margin-top: 3px; overflow: hidden; color: #757587; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.automation-list li > b { color: var(--green); font-size: 11px; }
.automation-list li.running { background: rgba(89, 215, 255, 0.035); border-color: rgba(89, 215, 255, 0.14); }
.loader { width: 13px; height: 13px; border: 2px solid rgba(89, 215, 255, 0.2); border-top-color: var(--cyan); border-radius: 50%; animation: spin 1s linear infinite; }
.console-footer { gap: 12px; margin-top: 14px; padding: 13px 4px 0; border-top: 1px solid var(--line-dark); color: #737385; font-size: 9px; }
.nova-tag { display: inline-flex; align-items: center; padding: 4px 7px; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.18); border-radius: 5px; color: #aa8fff; font-size: 8px; font-weight: 800; letter-spacing: 0.08em; white-space: nowrap; }

.section-heading { max-width: 650px; }
.section-heading h2 { margin-bottom: 24px; font-size: clamp(38px, 5vw, 62px); }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-dark .section-heading > p:last-child { color: var(--muted-dark); }
.section-heading.centered { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.compact { max-width: 560px; }
.section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.text-link, .route-link { color: var(--purple-deep); font-size: 13px; font-weight: 800; }
.text-link span, .route-link span { display: inline-block; margin-left: 5px; transition: transform 180ms ease; }
.text-link:hover span, .route-link:hover span { transform: translateX(4px); }

.problem { background: var(--white); }
.problem-grid { display: grid; align-items: center; grid-template-columns: 0.95fr 1.05fr; gap: 100px; }
.chat-chaos { position: relative; overflow: hidden; padding: 20px; background: #e9ecf0; border: 1px solid #d9dce2; border-radius: 28px; box-shadow: var(--shadow); }
.chat-toolbar { display: flex; align-items: center; justify-content: space-between; margin: -20px -20px 18px; padding: 14px 20px; background: #1d2530; color: var(--white); }
.chat-toolbar span { font-size: 12px; font-weight: 750; }
.chat-toolbar small { color: #9aa5b2; font-size: 9px; }
.chat-stream { display: grid; gap: 8px; min-height: 220px; padding: 12px 0 52px; }
.chat-message { width: fit-content; max-width: 74%; padding: 9px 12px; border-radius: 7px; color: #27323a; font-size: 11px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06); }
.chat-message.left { background: var(--white); border-top-left-radius: 2px; }
.chat-message.right { justify-self: end; background: #d9fdd2; border-top-right-radius: 2px; }
.chat-message.faded { opacity: 0.54; filter: blur(0.2px); }
.chat-message.lost { opacity: 0.34; font-style: italic; }
.chat-result { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 12px; padding: 13px; background: rgba(9, 9, 15, 0.94); border: 1px solid rgba(255, 139, 75, 0.24); border-radius: 12px; color: var(--white); backdrop-filter: blur(10px); }
.chat-result > span { display: grid; width: 28px; height: 28px; place-items: center; background: rgba(255, 139, 75, 0.15); border-radius: 50%; color: var(--orange); font-weight: 800; }
.chat-result div { display: flex; flex-direction: column; line-height: 1.3; }
.chat-result strong { font-size: 11px; }
.chat-result small { color: #9898a7; font-size: 9px; }

.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.route-card { position: relative; overflow: hidden; min-height: 480px; padding: 38px; background: var(--ink-raised); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.route-card::before { content: ""; position: absolute; width: 350px; height: 350px; right: -180px; bottom: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 92, 246, 0.16), transparent 70%); }
.producer-card::before { background: radial-gradient(circle, rgba(89, 215, 255, 0.13), transparent 70%); }
.route-number { color: #5e5e70; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
.route-icon { position: absolute; top: 30px; right: 30px; display: grid; width: 44px; height: 44px; place-items: center; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 50%; color: var(--purple-light); }
.producer-card .route-icon { background: rgba(89, 215, 255, 0.08); border-color: rgba(89, 215, 255, 0.15); color: var(--cyan); }
.route-label { margin: 70px 0 16px; color: #8e78d3; font-size: 9px; font-weight: 800; letter-spacing: 0.12em; }
.producer-card .route-label { color: #55badb; }
.route-card h3 { max-width: 420px; margin-bottom: 18px; font-size: 34px; }
.route-card > p:not(.route-label) { max-width: 480px; color: #a0a0b0; font-size: 14px; }
.route-card ul { display: grid; gap: 8px; margin: 24px 0 30px; padding: 0; list-style: none; color: #c4c4d0; font-size: 12px; }
.route-card li::before { content: "✓"; margin-right: 9px; color: var(--green); }
.route-link { position: absolute; bottom: 36px; color: var(--white); }

.jobs-preview { background: var(--paper); }
.example-notice { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; padding: 11px 15px; background: #eeeaf8; border: 1px solid #dcd3f5; border-radius: 11px; color: #595264; font-size: 11px; }
.example-notice span { flex: 0 0 auto; padding: 4px 7px; background: var(--purple-deep); border-radius: 5px; color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: 0.08em; }
.strong-notice { background: #fff9ee; border-color: #f2dfbd; color: #665b47; }
.strong-notice span { background: #985010; }
.job-grid { display: grid; gap: 18px; }
.job-grid-three { grid-template-columns: repeat(3, 1fr); }
.job-card { position: relative; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(20, 16, 42, 0.05); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.job-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.26); box-shadow: 0 22px 58px rgba(20, 16, 42, 0.1); }
.featured-card { border-color: rgba(139, 92, 246, 0.32); box-shadow: inset 0 3px var(--purple), 0 14px 40px rgba(20, 16, 42, 0.06); }
.job-card-top { align-items: flex-start; gap: 8px; margin-bottom: 20px; }
.job-time, .job-category { display: inline-flex; min-height: 24px; align-items: center; padding: 4px 7px; border-radius: 5px; font-size: 8px; font-weight: 850; letter-spacing: 0.07em; }
.job-time { background: #ede8ff; color: #6741c5; }
.job-time.urgent { background: #fff0e7; color: #a44313; }
.job-time.weekend { background: #e4f6fb; color: #1d667f; }
.job-category { background: #f2f3f5; color: #5f606d; text-align: right; }
.job-card h3 { margin-bottom: 6px; font-size: 21px; }
.job-location { margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.job-location::before { content: "•"; margin-right: 7px; color: var(--purple); font-size: 14px; }
.job-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 20px; padding: 17px 0; border-block: 1px solid var(--line); }
.job-meta div { min-width: 0; }
.job-meta dt { color: #686974; font-size: 8px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.job-meta dd { overflow: hidden; margin: 3px 0 0; color: #333440; font-size: 11px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.job-card-footer { gap: 12px; }
.job-card-footer a { color: var(--purple-deep); font-size: 10px; font-weight: 850; }
.open-status, .detail-status { display: inline-flex; align-items: center; gap: 6px; color: #2f765b; font-size: 9px; font-weight: 750; }

.automation-layout { display: grid; align-items: center; grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
.flow-board { padding: 22px; background: linear-gradient(145deg, #15151f, #0e0e15); border: 1px solid var(--line-dark); border-radius: 24px; box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28); }
.flow-step { display: flex; align-items: center; gap: 15px; padding: 17px; background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line-dark); border-radius: 13px; }
.flow-step > span { display: grid; width: 34px; height: 34px; place-items: center; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 10px; color: var(--purple-light); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.flow-step div { display: flex; flex-direction: column; }
.flow-step strong { font-size: 12px; }
.flow-step small { margin-top: 4px; color: #777789; font-size: 10px; }
.flow-line { display: grid; height: 36px; place-items: center; }
.flow-line::before { content: ""; width: 1px; height: 100%; background: linear-gradient(var(--purple), rgba(139, 92, 246, 0.15)); }
.flow-line i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--purple-light); box-shadow: 0 0 12px var(--purple); animation: flowPulse 2s ease-in-out infinite; }
.flow-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.split-path { display: grid; justify-items: start; padding: 16px; border: 1px solid var(--line-dark); border-radius: 13px; }
.split-path > span { display: grid; width: 26px; height: 26px; place-items: center; margin-bottom: 18px; border-radius: 50%; font-size: 10px; font-weight: 900; }
.split-path.good > span { background: rgba(69, 224, 168, 0.1); color: var(--green); }
.split-path.warning > span { background: rgba(255, 139, 75, 0.1); color: var(--orange); }
.split-path strong { font-size: 11px; }
.split-path small { margin-top: 5px; color: #777789; font-size: 9px; }
.flow-note { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-dark); color: #7f7f90; font-size: 9px; }

.security { background: var(--white); }
.security-layout { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 100px; }
.security-visual { position: relative; display: grid; min-height: 500px; place-items: center; }
.security-visual::before, .security-visual::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(139, 92, 246, 0.13); border-radius: 50%; }
.security-visual::after { width: 240px; height: 240px; border-style: dashed; animation: spin 30s linear infinite; }
.shield-core { position: relative; z-index: 2; display: grid; width: 118px; height: 132px; place-items: center; background: linear-gradient(145deg, #191622, #0b0b11); border: 1px solid rgba(184, 160, 255, 0.35); border-radius: 40px 40px 58px 58px; box-shadow: 0 25px 70px rgba(109, 60, 231, 0.2), inset 0 0 45px rgba(139, 92, 246, 0.12); clip-path: polygon(50% 0, 94% 17%, 88% 71%, 50% 100%, 12% 71%, 6% 17%); }
.shield-core span { display: grid; width: 42px; height: 42px; place-items: center; background: rgba(69, 224, 168, 0.12); border: 1px solid rgba(69, 224, 168, 0.26); border-radius: 50%; color: var(--green); font-size: 20px; }
.orbit { position: absolute; z-index: 3; padding: 7px 10px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 12px 30px rgba(20, 16, 42, 0.08); color: #6b617f; font-size: 8px; font-weight: 850; letter-spacing: 0.08em; }
.orbit-one { top: 70px; left: 16%; }
.orbit-two { top: 90px; right: 11%; }
.orbit-three { bottom: 75px; left: 10%; }
.orbit-four { right: 17%; bottom: 55px; }
.security-list { display: grid; gap: 8px; margin-top: 30px; }
.security-list > div { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.security-list > div > span { color: #6f647f; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.security-list p { display: flex; margin: 0; flex-direction: column; line-height: 1.3; }
.security-list strong { font-size: 12px; }
.security-list small { margin-top: 5px; color: var(--muted); font-size: 10px; }

.producer-value .section-heading > p:last-child { max-width: 620px; margin-inline: auto; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.benefit-grid article { min-height: 280px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.benefit-grid article > span { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 50px; background: #eee9fd; border-radius: 11px; color: var(--purple-deep); }
.benefit-grid h3 { margin-bottom: 12px; font-size: 18px; }
.benefit-grid p { min-height: 62px; color: var(--muted); font-size: 11px; }
.benefit-grid small { color: #674d9f; font-size: 7px; font-weight: 900; letter-spacing: 0.08em; }

.pilot { padding-top: 70px; background: var(--paper); }
.pilot-card { position: relative; display: flex; min-height: 330px; align-items: center; justify-content: space-between; gap: 50px; overflow: hidden; padding: 60px; background: linear-gradient(135deg, #6f42e9, #4d2fa7); border-radius: var(--radius-lg); color: var(--white); box-shadow: 0 30px 80px rgba(94, 57, 195, 0.25); }
.pilot-card > *:not(.pilot-grid) { position: relative; z-index: 1; }
.pilot-card h2 { margin-bottom: 16px; font-size: clamp(36px, 4vw, 54px); }
.pilot-card h2 em { color: #d8cbff; }
.pilot-card p:last-child { max-width: 610px; margin-bottom: 0; color: #ddd4f7; font-size: 14px; }
.pilot-card .button { flex: 0 0 auto; }

.site-footer { padding: 70px 0 25px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.6fr 0.6fr; gap: 70px; padding-bottom: 60px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child > p { max-width: 480px; color: #868698; font-size: 12px; }
.footer-links { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: #bdbdcc; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links a, .footer-links button { padding: 0; background: none; border: 0; color: #777789; font-size: 11px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #8e8ea0; font-size: 9px; }
.footer-bottom strong { color: #9a89c6; }
.compact-footer { padding-top: 25px; }

/* Inner pages */
.inner-page { background: var(--paper); }
.page-hero { position: relative; overflow: hidden; padding: 96px 0 80px; background: var(--ink); color: var(--white); }
.compact-hero { min-height: 430px; }
.page-hero::after { content: ""; position: absolute; width: 560px; height: 560px; top: -320px; right: 5%; border-radius: 50%; background: radial-gradient(circle, rgba(139, 92, 246, 0.24), transparent 70%); }
.page-hero-content { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.page-hero-content > div:first-child { max-width: 750px; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(52px, 6vw, 78px); letter-spacing: -0.065em; }
.page-hero h1 em { background: linear-gradient(100deg, var(--purple-light), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero-content > div:first-child > p:last-child { max-width: 640px; margin-bottom: 0; color: #a7a7b8; font-size: 16px; }
.page-stat { display: flex; max-width: 260px; flex-direction: column; padding: 18px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line-dark); border-radius: 13px; }
.page-stat strong { margin-bottom: 7px; color: var(--green); font-size: 9px; letter-spacing: 0.1em; }
.page-stat span { color: #a7a7b8; font-size: 10px; }

.listing-section { padding-top: 45px; }
.listing-layout { display: grid; align-items: start; grid-template-columns: 270px 1fr; gap: 30px; }
.filters-panel { position: sticky; top: 96px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(20, 16, 42, 0.04); }
.filter-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.filter-heading small, .results-head small { color: #7153a7; font-size: 7px; font-weight: 900; letter-spacing: 0.1em; }
.filter-heading h2, .results-head h2 { margin: 3px 0 0; font-size: 20px; }
.filter-heading button { padding: 0; background: none; border: 0; color: var(--purple-deep); font-size: 9px; font-weight: 800; cursor: pointer; }
.field-label, .filter-group legend { display: block; margin: 16px 0 7px; color: #4d4e5b; font-size: 9px; font-weight: 800; letter-spacing: 0.04em; }
.search-field { position: relative; }
.search-field span { position: absolute; top: 50%; left: 11px; color: #9798a3; transform: translateY(-50%); }
.search-field input { padding-left: 34px !important; }
.filters-panel input[type="search"], .filters-panel select { width: 100%; height: 42px; padding: 0 11px; background: #f7f7f9; border: 1px solid #e4e5e9; border-radius: 9px; color: #343540; font-size: 10px; }
.filter-group { margin: 0; padding: 0; border: 0; }
.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; }
.chip-grid input { position: absolute; opacity: 0; }
.chip-grid span { display: grid; min-height: 34px; place-items: center; padding: 5px; background: #f6f6f8; border: 1px solid #e7e7eb; border-radius: 8px; color: #62636e; font-size: 8px; font-weight: 750; text-align: center; cursor: pointer; }
.chip-grid input:checked + span { background: #ede7ff; border-color: #cfc0fb; color: #6138c4; }
.filter-security { display: flex; gap: 10px; margin-top: 22px; padding: 13px; background: #f5f2fc; border: 1px solid #e7dffa; border-radius: 10px; }
.filter-security > span { color: var(--purple-deep); }
.filter-security p { display: flex; margin: 0; flex-direction: column; line-height: 1.35; }
.filter-security strong { font-size: 9px; }
.filter-security small { margin-top: 4px; color: #655f6d; font-size: 8px; }
.filter-mobile-button { display: none; width: 100%; margin-bottom: 15px; padding: 13px; background: var(--white); border: 1px solid var(--line); border-radius: 11px; font-weight: 750; }
.results-head { margin-bottom: 20px; padding: 4px 2px 17px; border-bottom: 1px solid var(--line); }
.results-status { display: inline-flex; align-items: center; gap: 7px; color: #496c5e; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.job-list { display: grid; gap: 12px; }
.job-card-row { display: grid; grid-template-columns: 1.05fr 1.4fr; column-gap: 22px; padding: 20px; }
.job-card-row .job-card-top { margin-bottom: 12px; }
.job-card-row .job-location { margin-bottom: 0; }
.job-card-row .job-meta { margin: 0; padding: 4px 0; border: 0; grid-template-columns: repeat(2, 1fr); }
.job-card-row .job-card-footer { grid-column: 1 / -1; margin-top: 17px; padding-top: 14px; border-top: 1px solid var(--line); }
.job-card[hidden] { display: none; }
.empty-results { padding: 60px 20px; background: var(--white); border: 1px dashed #d4d5dc; border-radius: var(--radius); text-align: center; }
.empty-results > span { display: grid; width: 48px; height: 48px; margin: 0 auto 18px; place-items: center; background: #eee9fd; border-radius: 50%; color: var(--purple-deep); font-size: 22px; }
.empty-results h3 { margin-bottom: 9px; font-size: 22px; }
.empty-results p { margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.mini-cta { padding: 42px 0; background: linear-gradient(100deg, #6b3fe0, #442590); color: var(--white); }
.mini-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.mini-cta small { color: #cbbbfa; font-size: 8px; font-weight: 850; letter-spacing: 0.1em; }
.mini-cta h2 { margin: 5px 0 0; font-size: 30px; }

/* Opportunity details */
.detail-hero { position: relative; overflow: hidden; padding: 60px 0 58px; background: var(--ink); color: var(--white); }
.back-link { position: relative; z-index: 1; display: inline-block; margin-bottom: 45px; color: #9999aa; font-size: 11px; font-weight: 700; }
.back-link:hover { color: var(--white); }
.detail-title-row { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.detail-title-row h1 { margin: 15px 0 9px; font-size: clamp(42px, 5vw, 66px); }
.detail-title-row p { margin: 0; color: #a1a1b2; font-size: 14px; }
.dark-category { background: rgba(255, 255, 255, 0.07); color: #b4b4c4; }
.detail-status { padding: 9px 12px; background: rgba(69, 224, 168, 0.06); border: 1px solid rgba(69, 224, 168, 0.15); border-radius: 30px; color: #72d4ad; }
.detail-section { padding-top: 45px; }
.detail-layout { display: grid; align-items: start; grid-template-columns: 1fr 330px; gap: 28px; }
.detail-main { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.detail-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-bottom: 45px; background: #e5e5ea; border: 1px solid #e5e5ea; border-radius: 16px; }
.detail-facts > div { display: flex; min-height: 115px; align-items: flex-start; gap: 10px; padding: 16px; background: #f8f8fa; }
.fact-icon { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; background: #ece7fb; border-radius: 8px; color: var(--purple-deep); font-size: 9px; font-weight: 850; }
.detail-facts p { display: flex; margin: 0; flex-direction: column; line-height: 1.25; }
.detail-facts small { margin-bottom: 7px; color: #686974; font-size: 7px; font-weight: 850; letter-spacing: 0.08em; }
.detail-facts strong { font-size: 11px; }
.detail-facts em { margin-top: 5px; color: #686974; font-size: 8px; }
.detail-block { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 32px 0; border-top: 1px solid var(--line); }
.detail-block-number { padding-top: 4px; color: #6f5b91; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.detail-block h2 { margin-bottom: 14px; font-size: 24px; }
.detail-block p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.check-list { display: grid; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; color: #444550; font-size: 12px; }
.check-list li::before { content: "✓"; display: inline-grid; width: 20px; height: 20px; margin-right: 8px; place-items: center; background: #e6f8f1; border-radius: 50%; color: #24895f; font-size: 9px; }
.muted-note { font-size: 10px !important; font-style: italic; }
.safety-callout { display: flex; gap: 12px; padding: 16px; background: #fff7ed; border: 1px solid #f5dfc6; border-radius: 12px; }
.safety-callout > span { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; background: #f9e4c9; border-radius: 50%; color: #ac621f; font-size: 10px; font-weight: 900; }
.safety-callout p { margin: 0; color: #705a43; font-size: 11px; }
.contact-panel { position: sticky; top: 96px; display: grid; gap: 12px; }
.contact-card { padding: 24px; background: var(--ink-soft); border: 1px solid rgba(139, 92, 246, 0.19); border-radius: var(--radius); color: var(--white); box-shadow: 0 25px 60px rgba(20, 16, 42, 0.18); }
.panel-tag { color: #9f84e9; font-size: 8px; font-weight: 850; letter-spacing: 0.1em; }
.producer-avatar { display: grid; width: 58px; height: 58px; margin: 22px 0 15px; place-items: center; background: linear-gradient(145deg, rgba(139, 92, 246, 0.35), rgba(89, 215, 255, 0.1)); border: 1px solid rgba(184, 160, 255, 0.3); border-radius: 17px; color: #cdbdff; font-size: 9px; font-weight: 900; letter-spacing: 0.08em; }
.contact-card h2 { margin-bottom: 9px; font-size: 20px; }
.contact-card > p { color: #8c8c9e; font-size: 10px; }
.contact-data { display: flex; margin: 20px 0; flex-direction: column; padding: 13px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line-dark); border-radius: 10px; }
.contact-data small { margin-bottom: 4px; color: #a0a0b0; font-size: 7px; font-weight: 850; }
.contact-data strong { color: #b3b3c1; font-size: 10px; }
.contact-card .button { margin-top: 8px; }
.contact-card .button-outline-danger { color: #ff8f99; }
.share-button { width: 100%; margin-top: 16px; padding: 12px 0 0; background: none; border: 0; border-top: 1px solid var(--line-dark); color: #7e7e8f; font-size: 9px; cursor: pointer; }
.share-button:hover { color: var(--white); }
.verification-card { display: flex; gap: 10px; padding: 15px; background: #eaf7f2; border: 1px solid #cfeade; border-radius: 13px; }
.verification-card > span { color: #2a936c; font-weight: 900; }
.verification-card p { display: flex; margin: 0; flex-direction: column; line-height: 1.35; }
.verification-card strong { color: #33705b; font-size: 9px; }
.verification-card small { margin-top: 5px; color: #4b6d5e; font-size: 8px; }
.detail-actions-mobile { display: none; }

/* Producer form */
.producer-hero { min-height: 470px; }
.producer-signal { display: flex; max-width: 330px; align-items: center; gap: 13px; padding: 17px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line-dark); border-radius: 14px; }
.producer-signal div { display: flex; flex-direction: column; line-height: 1.3; }
.producer-signal small { margin-bottom: 4px; color: #8d73d3; font-size: 7px; font-weight: 850; letter-spacing: 0.1em; }
.producer-signal strong { font-size: 10px; }
.publisher-section { padding-top: 45px; }
.publisher-layout { display: grid; align-items: start; grid-template-columns: 1fr 330px; gap: 28px; }
.publisher-form { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.form-progress { display: grid; align-items: center; grid-template-columns: auto 1fr auto 1fr auto; gap: 12px; padding: 22px 28px; background: #fafafd; border-bottom: 1px solid var(--line); }
.form-progress > div { display: flex; align-items: center; gap: 8px; }
.form-progress span { display: grid; width: 24px; height: 24px; place-items: center; background: #e9e9ee; border-radius: 50%; color: #858691; font-size: 8px; font-weight: 850; }
.form-progress span.is-current { background: var(--purple); color: var(--white); }
.form-progress small { color: #666772; font-size: 8px; font-weight: 750; white-space: nowrap; }
.form-progress i { height: 1px; background: #ddddE3; }
.form-section { padding: 36px; border-bottom: 1px solid var(--line); }
.form-section:last-child { border-bottom: 0; }
.form-section-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 28px; }
.form-section-heading > span { padding-top: 5px; color: #7256a5; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.form-section-heading small { color: #7153a7; font-size: 7px; font-weight: 900; letter-spacing: 0.1em; }
.form-section-heading h2 { margin: 3px 0 0; font-size: 25px; }
.field-grid { display: grid; gap: 18px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.full-span { grid-column: 1 / -1; }
.form-field { display: flex; min-width: 0; flex-direction: column; }
.form-field > span, .form-field > label { margin-bottom: 7px; color: #494a56; font-size: 9px; font-weight: 800; }
.form-field > span b, .form-field > label b { color: var(--purple-deep); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 12px; background: #f8f8fa; border: 1px solid #dedfe5; border-radius: 9px; color: #2c2d37; font-size: 11px; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.form-field input, .form-field select { height: 44px; }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { background: var(--white); border-color: #a98af4; box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.09); outline: none; }
.form-field.is-invalid input, .form-field.is-invalid select, .form-field.is-invalid textarea { border-color: #e7616e; background: #fff8f8; }
.field-error { display: none; margin-top: 5px; color: #c34350; font-size: 8px; }
.form-field.is-invalid .field-error { display: block; }
.field-hint { margin-top: 5px; color: #666772; font-size: 8px; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.money-field > div { position: relative; }
.money-field em { position: absolute; top: 50%; left: 12px; color: #686974; font-size: 10px; font-style: normal; transform: translateY(-50%); }
.money-field input { padding-left: 35px; }
.consent-field { display: flex; align-items: flex-start; gap: 9px; margin-top: 24px; padding: 13px; background: #f5f2fc; border: 1px solid #e5ddf8; border-radius: 10px; color: #625d6e; font-size: 9px; cursor: pointer; }
.consent-field input { margin-top: 2px; accent-color: var(--purple); }
.consent-field.is-invalid { border-color: #e7616e; background: #fff8f8; }
.form-global-error { display: block; margin-top: 12px; color: #bd3f4b; font-size: 9px; font-weight: 750; }
.submit-opportunity { width: 100%; margin-top: 20px; }
.nora-sidebar { position: sticky; top: 96px; display: grid; gap: 14px; }
.nora-card { padding: 24px; background: linear-gradient(145deg, #161421, #0d0d14); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: var(--radius); color: var(--white); box-shadow: 0 30px 70px rgba(20, 16, 42, 0.2); }
.nora-card h2 { margin: 28px 0 20px; font-size: 22px; }
.nora-card ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.nora-card li { display: grid; grid-template-columns: 27px 1fr; gap: 10px; padding: 13px 0; border-top: 1px solid var(--line-dark); }
.nora-card li > span { color: #6f5a9f; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; }
.nora-card li p { display: flex; margin: 0; flex-direction: column; line-height: 1.3; }
.nora-card li strong { color: #d0d0dc; font-size: 10px; }
.nora-card li small { margin-top: 4px; color: #777789; font-size: 8px; }
.nora-promise { display: flex; gap: 10px; margin-top: 16px; padding: 13px; background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.16); border-radius: 11px; }
.nora-promise > span { color: var(--purple-light); }
.nora-promise p { display: flex; margin: 0; flex-direction: column; line-height: 1.3; }
.nora-promise strong { color: #c9baf3; font-size: 9px; }
.nora-promise small { margin-top: 4px; color: #7f748f; font-size: 8px; }
.commercial-card { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.commercial-card > small { color: #6847ad; font-size: 7px; font-weight: 900; letter-spacing: 0.09em; }
.commercial-card h3 { margin: 8px 0 14px; font-size: 18px; }
.commercial-card ul { display: grid; gap: 6px; margin: 0 0 14px; padding: 0; list-style: none; color: #5d5e69; font-size: 9px; }
.commercial-card li::before { content: "+"; margin-right: 7px; color: var(--purple-deep); font-weight: 900; }
.commercial-card > span { display: block; padding-top: 12px; border-top: 1px solid var(--line); color: #696a74; font-size: 8px; }

/* Dialogs and feedback */
.site-dialog { width: min(460px, calc(100% - 28px)); padding: 30px; background: var(--white); border: 1px solid rgba(139, 92, 246, 0.18); border-radius: 22px; color: var(--text); box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45); }
.site-dialog::backdrop { background: rgba(5, 5, 10, 0.78); backdrop-filter: blur(6px); }
.dialog-close { position: absolute; top: 12px; right: 12px; display: grid; width: 34px; height: 34px; place-items: center; background: #f2f2f5; border: 0; border-radius: 50%; color: #62636e; font-size: 20px; cursor: pointer; }
.dialog-icon { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; background: #eee9fd; border-radius: 14px; color: var(--purple-deep); font-size: 18px; font-weight: 900; }
.dialog-icon.success { background: #e4f7ef; color: #278b64; }
.dialog-icon.danger { background: #fff0f1; color: #c84b58; }
.site-dialog h2 { margin-bottom: 12px; font-size: 26px; }
.site-dialog > p { color: var(--muted); font-size: 12px; }
.site-dialog > .button { margin-top: 10px; }
.report-dialog form { display: grid; gap: 8px; margin-top: 18px; }
.report-dialog form label { cursor: pointer; }
.report-dialog form label input { position: absolute; opacity: 0; }
.report-dialog form label span { display: block; padding: 12px; background: #f7f7f9; border: 1px solid #e5e5e9; border-radius: 9px; font-size: 10px; }
.report-dialog form label input:checked + span { background: #fff0f1; border-color: #f1bdc2; color: #a63b46; }
.report-dialog form .button { margin-top: 8px; }
.publish-result-dialog { width: min(580px, calc(100% - 28px)); }
.dialog-kicker { margin-bottom: 6px !important; color: #7b5dc2 !important; font-size: 8px !important; font-weight: 900; letter-spacing: 0.1em; }
.generated-preview { display: grid; gap: 10px; margin: 20px 0; padding: 18px; background: #111119; border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 14px; color: var(--white); }
.generated-preview .preview-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.generated-preview .preview-tags span { padding: 4px 7px; background: rgba(139, 92, 246, 0.14); border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 5px; color: #b8a0ff; font-size: 7px; font-weight: 850; letter-spacing: 0.07em; }
.generated-preview h3 { margin: 2px 0; font-size: 20px; }
.generated-preview > p { margin: 0; color: #9292a3; font-size: 10px; }
.generated-preview dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 6px 0 0; }
.generated-preview dt { color: #6f6f80; font-size: 7px; font-weight: 850; }
.generated-preview dd { margin: 3px 0 0; color: #d4d4de; font-size: 9px; }
.dialog-safety-note { display: flex; flex-direction: column; margin-bottom: 14px; padding: 11px; background: #fff8ec; border: 1px solid #f1dfbf; border-radius: 9px; color: #6b5b42; font-size: 9px; }
.dialog-safety-note span { margin-top: 3px; color: #8a7b63; }
.toast { position: fixed; z-index: 100; right: 20px; bottom: 20px; max-width: min(340px, calc(100% - 40px)); padding: 12px 16px; background: #171721; border: 1px solid rgba(184, 160, 255, 0.2); border-radius: 10px; color: var(--white); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3); font-size: 10px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal { animation: rise 650ms cubic-bezier(.2,.7,.2,1) both; }
.reveal-delay { animation-delay: 100ms; }
.reveal-delay-two { animation-delay: 180ms; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes flowPulse { 0%, 100% { opacity: 0.35; transform: translateY(-9px); } 50% { opacity: 1; transform: translateY(9px); } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 32px, 940px); }
  .hero-layout { gap: 42px; }
  .hero h1 { font-size: clamp(54px, 7vw, 76px); }
  .problem-grid, .automation-layout, .security-layout { gap: 55px; }
  .job-grid-three { grid-template-columns: repeat(2, 1fr); }
  .job-grid-three .job-card:last-child { grid-column: 1 / -1; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 16px; left: 16px; display: none; align-items: stretch; flex-direction: column; gap: 3px; padding: 12px; background: rgba(16, 16, 24, 0.98); border: 1px solid var(--line-dark); border-radius: 14px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
  .main-nav .nav-cta { margin: 5px 0 0; text-align: center; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; padding: 80px 0; }
  .hero-copy { max-width: 700px; }
  .hero-console { width: min(100%, 620px); }
  .problem-grid, .automation-layout, .security-layout { grid-template-columns: 1fr; }
  .problem-grid { gap: 50px; }
  .chat-chaos { max-width: 650px; }
  .automation-layout { gap: 50px; }
  .security-visual { min-height: 420px; order: 2; }
  .security-layout .section-heading { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .page-hero-content { align-items: flex-start; flex-direction: column; }
  .listing-layout { grid-template-columns: 1fr; }
  .filter-mobile-button { display: block; }
  .filters-panel { position: static; display: none; }
  .filters-panel.is-open { display: block; }
  .detail-layout, .publisher-layout { grid-template-columns: 1fr; }
  .contact-panel, .nora-sidebar { position: static; }
  .contact-panel { display: none; }
  .detail-actions-mobile { display: grid; gap: 10px; margin-top: 20px; padding-top: 25px; border-top: 1px solid var(--line); }
  .detail-facts { grid-template-columns: repeat(2, 1fr); }
  .nora-sidebar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  :root { --shell: calc(100% - 26px); }
  .demo-bar { min-height: 38px; font-size: 10px; line-height: 1.3; }
  .nav-shell { min-height: 66px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .section { padding: 68px 0; }
  .hero { min-height: auto; }
  .hero-layout { gap: 50px; padding: 66px 0; }
  .hero h1 { font-size: 55px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-console { padding: 14px; border-radius: 18px; }
  .console-footer { align-items: flex-start; flex-direction: column; }
  .section-heading h2 { font-size: 39px; }
  .section-heading > p:last-child { font-size: 15px; }
  .section-heading.centered { margin-bottom: 36px; text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .section-row { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .route-grid, .job-grid-three, .benefit-grid { grid-template-columns: 1fr; }
  .job-grid-three .job-card:last-child { grid-column: auto; }
  .route-card { min-height: 500px; padding: 26px; }
  .route-icon { top: 24px; right: 24px; }
  .route-label { margin-top: 60px; }
  .route-card h3 { font-size: 29px; }
  .flow-split { grid-template-columns: 1fr; }
  .security-visual { min-height: 360px; transform: scale(0.9); }
  .security-visual::before { width: 320px; height: 320px; }
  .orbit-one { left: 0; }
  .orbit-two { right: 0; }
  .orbit-three { left: 0; }
  .orbit-four { right: 0; }
  .benefit-grid article { min-height: auto; }
  .benefit-grid article > span { margin-bottom: 30px; }
  .benefit-grid p { min-height: auto; }
  .pilot { padding-top: 20px; }
  .pilot-card { align-items: stretch; flex-direction: column; padding: 34px 25px; }
  .pilot-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .example-notice { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 72px 0 60px; }
  .compact-hero { min-height: auto; }
  .page-hero h1 { font-size: 51px; }
  .page-hero-content > div:first-child > p:last-child { font-size: 14px; }
  .page-stat { max-width: none; width: 100%; }
  .results-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .job-card-row { grid-template-columns: 1fr; }
  .job-card-row .job-meta { margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); }
  .mini-cta-inner { align-items: flex-start; flex-direction: column; }
  .mini-cta .button { width: 100%; }
  .detail-hero { padding: 45px 0; }
  .back-link { margin-bottom: 34px; }
  .detail-title-row { align-items: flex-start; flex-direction: column; }
  .detail-title-row h1 { font-size: 44px; }
  .detail-main { padding: 20px; border-radius: var(--radius); }
  .detail-facts { grid-template-columns: 1fr; }
  .detail-facts > div { min-height: auto; }
  .detail-block { grid-template-columns: 1fr; gap: 8px; }
  .producer-signal { max-width: none; width: 100%; }
  .form-progress { padding: 18px; gap: 7px; }
  .form-progress small { display: none; }
  .form-section { padding: 27px 20px; }
  .form-section-heading h2 { font-size: 22px; }
  .two-columns, .nora-sidebar { grid-template-columns: 1fr; }
  .full-span { grid-column: auto; }
  .site-dialog { padding: 25px 20px; }
  .publish-result-dialog { max-height: calc(100vh - 30px); overflow-y: auto; }
}

@media (max-width: 390px) {
  .brand-copy small { letter-spacing: 0.07em; }
  .hero h1, .page-hero h1 { font-size: 46px; }
  .hero-console { margin-inline: -2px; }
  .automation-list li { grid-template-columns: 24px 1fr 16px; padding-inline: 9px; }
  .chat-chaos { padding: 15px; }
  .chat-toolbar { margin: -15px -15px 15px; }
  .chat-result { right: 15px; bottom: 15px; left: 15px; }
  .job-meta { gap: 10px; }
  .filter-mobile-button { font-size: 13px; }
  .field-pair { grid-template-columns: 1fr; }
}

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