*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #111;
  line-height: 1.5;
  background: #fbf8f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Default nav style for interior pages */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  color: #111;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #111;
  gap: 0.5rem;
}

.logo-img {
  height: 2rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-divider {
  opacity: 0.6;
  font-size: 1.25rem;
  font-weight: 300;
}

.logo-local {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.btn-book-demo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 1rem;
  background: #e85d04;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-book-demo:hover {
  background: #d35400;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(28vw, 320px);
  min-width: 220px;
  margin-left: auto;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
}

.nav-search input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.85rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 0.9rem;
}

.nav-search button {
  padding: 0.5rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-links > a {
  color: #111;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-links > a:hover {
  text-decoration: underline;
}

/* Offerings tab */
.nav-item-dropdown {
  position: relative;
}

.nav-link-offerings {
  color: #111;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-link-offerings:hover {
  text-decoration: underline;
}

/* Offerings sub-nav bar (full-width row below orange line) – only when Offerings is hovered */
.offerings-subnav-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  display: none;
}

.top-nav.offerings-open .offerings-subnav-bar {
  display: block;
}

/* Case Studies tab */
.nav-link-case-studies {
  color: #111;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-link-case-studies:hover {
  text-decoration: underline;
}

/* Case Studies sub-nav bar – only when Case Studies is clicked */
.case-studies-subnav-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  display: none;
}

.top-nav.case-studies-open .case-studies-subnav-bar {
  display: block;
}

.offerings-subnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  align-items: center;
}

.offerings-subnav-inner a {
  color: #111;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Homepage nav overlays the hero image */
.home-page .top-nav {
  background: transparent;
  color: #fff;
}

.home-page .nav-inner {
  width: min(calc(100% - 2rem), 1480px);
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(17, 17, 17, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.home-page .logo {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.home-page .logo-img {
  filter: brightness(0) invert(1);
}

.home-page .nav-links > a,
.home-page .nav-link-offerings,
.home-page .nav-link-case-studies {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.home-page .nav-search {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.home-page .btn-book-demo {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1a, #e85d04);
  box-shadow: 0 12px 30px rgba(232, 93, 4, 0.32);
}

.home-page .offerings-subnav-bar,
.home-page .case-studies-subnav-bar {
  background: rgba(17, 17, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.home-page .offerings-subnav-inner a {
  color: #fff;
}

.offerings-subnav-inner a:hover {
  color: #e85d04;
  text-decoration: underline;
}

/* Orange sub-nav line */
.sub-nav-line {
  height: 3px;
  background: #e85d04;
  width: 100%;
}

/* Full-page banner */
.banner {
  min-height: 100vh;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-placeholder {
  width: 100%;
  min-height: 100svh;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  background-image: url('images/local-bg-neighborhood-storefronts.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 93, 4, 0.22), transparent 32%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.66) 100%);
  pointer-events: none;
  z-index: 0;
}

.banner-placeholder span {
  display: none;
}

.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;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, 1460px);
  color: #fff;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.25rem;
  min-height: calc(100svh - 8rem);
  align-items: flex-end;
  padding: 8.5rem 0 2.5rem;
}

.hero-network-panel {
  padding: 1.25rem;
  background: rgba(17, 17, 17, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-kicker {
  margin: 0 0 0.75rem;
  color: #ffb070;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-network-panel h1 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-network-panel p:not(.hero-kicker) {
  max-width: 460px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-network-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-network-stats span {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-network-stats strong {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.hero-overlay-board {
  width: 100%;
  margin-left: auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.15rem 0.25rem 0;
}

.hero-board-heading span,
.hero-board-heading a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-board-heading a {
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-card {
  min-height: 164px;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(17, 17, 17, 0.7);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.hero-card h2 {
  margin: 0.65rem 0 0;
  color: #fff;
  font-size: clamp(0.98rem, 1.18vw, 1.22rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-card p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.hero-card .hero-card-meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card .content-label {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-visual {
  position: relative;
  min-height: 72px;
  margin-bottom: 0.7rem;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.1);
}

.hero-card-visual::before,
.hero-card-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
}

.hero-card-visual::before {
  inset: 0;
  background: var(--visual-bg);
}

.hero-card-visual::after {
  right: 0.7rem;
  bottom: 0.7rem;
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: -3.6rem -1.8rem 0 -1rem rgba(255, 255, 255, 0.24);
}

.visual-news {
  --visual-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.18) 0 4px, transparent 4px 11px),
    linear-gradient(135deg, #ff7a1a, #5a2dff);
}

.visual-events {
  --visual-bg:
    radial-gradient(circle at 28% 32%, #fff 0 8%, transparent 9%),
    linear-gradient(90deg, rgba(255,255,255,0.18) 0 24%, transparent 24%),
    linear-gradient(135deg, #ff4f7b, #ff9c1a);
}

.visual-stays {
  --visual-bg:
    linear-gradient(135deg, transparent 0 42%, rgba(255,255,255,0.24) 42% 58%, transparent 58%),
    linear-gradient(135deg, #228be6, #22c55e);
}

.visual-marketplace {
  --visual-bg:
    radial-gradient(circle at 25% 75%, rgba(255,255,255,0.32) 0 12%, transparent 13%),
    linear-gradient(135deg, #7c3aed, #06b6d4);
}

.visual-deals {
  --visual-bg:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.24) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #f97316, #e11d48);
}

.visual-activities {
  --visual-bg:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.3) 0 12%, transparent 13%),
    linear-gradient(135deg, #0ea5e9, #84cc16);
}

.visual-dining {
  --visual-bg:
    linear-gradient(90deg, rgba(255,255,255,0.2) 0 10%, transparent 10% 20%, rgba(255,255,255,0.2) 20% 30%, transparent 30%),
    linear-gradient(135deg, #dc2626, #f59e0b);
}

.visual-housing {
  --visual-bg:
    linear-gradient(135deg, transparent 0 35%, rgba(255,255,255,0.28) 35% 50%, transparent 50%),
    linear-gradient(135deg, #334155, #38bdf8);
}

.visual-jobs {
  --visual-bg:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 6px, transparent 6px 14px),
    linear-gradient(135deg, #16a34a, #14532d);
}

.visual-resources {
  --visual-bg:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.32) 0 18%, transparent 19%),
    linear-gradient(135deg, #475569, #f97316);
}

/* Homepage sections */
.home-section {
  padding: 5rem 2rem;
}

.home-section:nth-of-type(even) {
  background: #fbf7f2;
}

.home-get-started {
  background: linear-gradient(180deg, #faf6f1 0%, #ffffff 100%);
  padding: 5rem 2rem 5.5rem;
}

.home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-eyebrow {
  margin: 0 0 0.75rem;
  color: #e85d04;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-section-title {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-section-copy {
  max-width: 720px;
  margin: 1rem 0 0;
  color: #444;
  font-size: 1.125rem;
  line-height: 1.7;
}

.home-primary-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: #e85d04;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.home-primary-link:hover {
  text-decoration: underline;
}

.local-alert {
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #111 0%, #2a170b 58%, #111 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.local-alert p {
  margin: 0;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.local-alert strong {
  color: #fff;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading-row .home-primary-link {
  margin-top: 0;
  white-space: nowrap;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.featured-story,
.story-card,
.event-card,
.product-card,
.submit-panel {
  background: #fff;
  border: 1px solid #f0e3d7;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.story-card:hover,
.event-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: #eec8a9;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

.featured-story {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.78)),
    url('images/local-bg-neighborhood-storefronts.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.featured-story h3 {
  max-width: 720px;
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.featured-story p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.featured-story a {
  align-self: flex-start;
  margin-top: 1.25rem;
  color: #fff;
  font-weight: 700;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.story-card,
.product-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.content-label {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  background: rgba(232, 93, 4, 0.12);
  border-radius: 999px;
  color: #c04f08;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3,
.event-card h3,
.product-card h3 {
  margin: 0.85rem 0 0.45rem;
  color: #111;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.story-card p,
.event-card p,
.product-card p {
  margin: 0;
  color: #555;
  line-height: 1.65;
}

.event-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.event-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 24px;
}

.event-date {
  display: grid;
  place-items: center;
  min-width: 4.5rem;
  min-height: 4.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #111, #362112);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.event-date span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-date strong {
  font-size: 1.75rem;
  line-height: 1;
}

.product-framework {
  background: linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.product-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 7rem;
  height: 7rem;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 999px;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.submit-section {
  background: #111;
}

.submit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff 0%, #fff7ef 100%);
}

.submit-panel .home-section-title {
  max-width: 760px;
}

.submit-panel .home-section-copy {
  max-width: 820px;
}

.getting-started-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.getting-started-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid #f0e3d7;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

.getting-started-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.12);
  color: #e85d04;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.getting-started-card h3 {
  margin: 1.25rem 0 0.75rem;
  color: #111;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.getting-started-card p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer: white, one line of tabs */
.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 1.25rem 2rem;
}

.footer-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-tabs a {
  color: #111;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-tabs a:hover {
  text-decoration: underline;
}

/* Page layout (About, Offerings) */
.page-main {
  padding-top: 5rem;
  min-height: 60vh;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.page-lead {
  font-size: 1.125rem;
  color: #444;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.page-body p {
  margin: 0 0 1rem;
}

.page-body p:last-child {
  margin-bottom: 0;
}

.page-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.page-section-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #111;
}

.page-section p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.offering-section {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.offering-section:last-of-type {
  border-bottom: none;
}

.offering-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #111;
}

.offering-section p {
  margin: 0;
  color: #444;
}

.offering-section a {
  color: #e85d04;
  text-decoration: none;
}

.offering-section a:hover {
  text-decoration: underline;
}

.wide-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.flow-hero {
  max-width: 840px;
}

.flow-title {
  margin-bottom: 1rem;
}

.flow-copy {
  max-width: 780px;
  margin-bottom: 0;
}

.flow-card {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(180deg, #fff 0%, #f9f6f1 100%);
  border: 1px solid #efe2d5;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.selection-form {
  display: grid;
  gap: 2rem;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.wizard-progress-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  background: #fff;
  border: 1px solid #eadbcf;
  border-radius: 20px;
  opacity: 0.65;
  transition: opacity 120ms ease, border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.wizard-progress-item.is-active,
.wizard-progress-item.is-complete {
  opacity: 1;
}

.wizard-progress-item.is-active {
  border-color: #e85d04;
  box-shadow: 0 14px 32px rgba(232, 93, 4, 0.12);
  transform: translateY(-1px);
}

.wizard-progress-item.is-complete {
  border-color: #f1decc;
  background: #fff8f1;
}

.wizard-progress-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.12);
  color: #e85d04;
  font-size: 0.9rem;
  font-weight: 700;
}

.wizard-progress-label,
.wizard-progress-copy {
  margin: 0;
}

.wizard-progress-label {
  color: #111;
  font-weight: 700;
}

.wizard-progress-copy {
  margin-top: 0.2rem;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.selection-group {
  display: grid;
  gap: 1.25rem;
}

.selection-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.selection-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.12);
  color: #e85d04;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.selection-title {
  margin: 0;
  color: #111;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.selection-copy {
  margin: 0.5rem 0 0;
  color: #555;
  line-height: 1.7;
}

.selection-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.selection-option {
  position: relative;
  display: block;
}

.selection-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-option span {
  display: flex;
  align-items: center;
  min-height: 4.5rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #eadbcf;
  border-radius: 18px;
  color: #222;
  font-weight: 600;
  line-height: 1.4;
  transition: border-color 120ms ease, background-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.selection-option input:checked + span {
  background: #fff3ea;
  border-color: #e85d04;
  box-shadow: 0 12px 30px rgba(232, 93, 4, 0.12);
  transform: translateY(-1px);
}

.selection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.wizard-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid #d9c8b9;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.wizard-secondary:hover {
  background: #faf6f1;
}

.selection-note {
  margin: 0;
  max-width: 540px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #eadbcf;
  border-radius: 22px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f2e7dc;
}

.review-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.review-label {
  color: #666;
  font-weight: 600;
}

.filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.filter-pill {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.65rem 1rem;
  background: #fff6ee;
  border: 1px solid #f1decc;
  border-radius: 999px;
  color: #55351f;
  font-size: 0.95rem;
}

.filter-link {
  color: #e85d04;
  font-weight: 600;
  text-decoration: none;
}

.filter-link:hover {
  text-decoration: underline;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.talent-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid #eee4d8;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.talent-card[hidden] {
  display: none;
}

.talent-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.talent-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  background: rgba(232, 93, 4, 0.12);
  border-radius: 999px;
  color: #c04f08;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.talent-tag-muted {
  background: #f5efe8;
  color: #6f5947;
}

.talent-card h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.talent-meta {
  margin: 0;
  color: #6a6a6a;
  font-weight: 600;
}

.talent-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.talent-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.8rem 1.1rem;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.talent-cta:hover {
  background: #2a2a2a;
}

.empty-state {
  margin-top: 2rem;
  padding: 2rem;
  background: #f8f5f1;
  border: 1px solid #eadfce;
  border-radius: 24px;
}

.empty-state h2 {
  margin: 0 0 0.5rem;
}

.empty-state p {
  margin: 0 0 1.25rem;
  color: #555;
  max-width: 640px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: 2rem;
}

.booking-main {
  min-width: 0;
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fbf7f2;
  border: 1px solid #eee2d6;
  border-radius: 20px;
}

.booking-form {
  padding: 2rem;
  background: #fff;
  border: 1px solid #eee2d6;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  color: #111;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #dbcab9;
  border-radius: 16px;
  font: inherit;
  color: #111;
  background: #fff;
}

.form-field textarea {
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.booking-sidebar {
  min-width: 0;
}

.booking-summary-card {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
  background: #111;
  border-radius: 24px;
  color: #fff;
}

.booking-summary-card .home-section-eyebrow {
  color: #f7b182;
}

.booking-summary-card .selection-note {
  color: rgba(255, 255, 255, 0.72);
}

.summary-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.summary-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.summary-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-list strong {
  font-size: 1.1rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .wizard-progress,
  .selection-options,
  .talent-grid,
  .booking-layout,
  .form-grid,
  .news-layout,
  .event-rail,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .getting-started-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .submit-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-story {
    min-height: 360px;
  }

  .nav-inner {
    gap: 1rem;
  }

  .nav-search {
    width: min(32vw, 260px);
    min-width: 180px;
  }

  .flow-card,
  .booking-form {
    padding: 1.5rem;
  }

  .wide-page-content {
    padding: 1.5rem;
  }

  .selection-header,
  .process-step {
    flex-direction: column;
  }

  .review-row {
    flex-direction: column;
  }

  .booking-summary-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1rem;
  }

  .home-page .nav-inner {
    border-radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .btn-book-demo {
    margin-left: auto;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }

  .nav-search {
    order: 3;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .hero-content {
    width: min(100% - 2rem, 1120px);
    min-height: calc(100svh - 10rem);
    padding: 10rem 0 2rem;
  }

  .hero-overlay-board {
    width: 100%;
  }

  .hero-card {
    min-height: 132px;
  }

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

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

  .home-section {
    padding: 4rem 1rem;
  }

  .page-content,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .selection-option span {
    min-height: 3.75rem;
  }
}
