* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --black: #030303;
  --black2: #070707;
  --charcoal: #101010;
  --charcoal2: #171717;
  --white: #f7f4ee;
  --muted: #c9c4ba;
  --soft: #9c9588;
  --gold: #c99b42;
  --gold2: #f2c86b;
  --gold-bright: rgba(242, 200, 107, .26);
  --line: rgba(255,255,255,.12);
  --panel: rgba(255,255,255,.055);
  --panel2: rgba(255,255,255,.085);
  --danger: #ff6464;
  --success: #7fe0a1;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #000 0%, #030303 28%, #050505 100%) !important;
  color: var(--white) !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 30px 6%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,0));
}

.logo {
  text-decoration: none;
  line-height: .88;
  color: #fff !important;
  display: inline-block;
}

.logo-main {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -5px;
  color: #fff;
}

.logo-sub {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 34px;
  padding-top: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  transition: .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold2);
}

.menu-btn {
  display: none;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

/* ===============================
   Main Hero
   Brighter gold accent
   No yellow circle
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #030303;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.88) 42%,
      rgba(0,0,0,.52) 72%,
      rgba(0,0,0,.82) 100%
    ),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=85');
  background-size: cover;
  background-position: right center;
  filter: grayscale(100%) contrast(1.16) brightness(.52);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background:
    linear-gradient(to top, #030303 0%, rgba(3,3,3,.86) 28%, rgba(3,3,3,0) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.14) 36%,
      rgba(0,0,0,.90) 100%
    ),
    linear-gradient(
      115deg,
      rgba(242,200,107,.20) 0%,
      rgba(242,200,107,.10) 15%,
      rgba(255,255,255,0) 34%,
      rgba(255,255,255,0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.024) 1px,
      transparent 1px
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 54%,
      rgba(242,200,107,.16) 54.2%,
      rgba(242,200,107,.07) 62%,
      transparent 74%
    );
  background-size: auto, auto, 82px 82px, 82px 82px, auto;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(850px,92%);
  margin-left: 4.2%;
  padding-top: 240px;
  padding-bottom: 140px;
}

.hero-content h1,
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(66px,9vw,132px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -3px;
  color: #fff;
}

.hero-content h1 span {
  display: block;
}

.hero-content p {
  margin-top: 34px;
  font-size: clamp(18px,2vw,27px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 760px;
}

.service-line {
  display: block;
  margin-top: 20px;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,var(--gold2),var(--gold));
  color: #111 !important;
  border: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  min-height: 58px;
  padding: 0 30px;
  cursor: pointer;
  transition: .25s;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(242,200,107,.22);
}

.cta {
  margin-top: 46px;
  min-width: 230px;
  min-height: 74px;
}

.cta:hover,
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 24px 65px rgba(242,200,107,.30);
}

.btn.ghost,
.cta.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: #fff !important;
  box-shadow: none;
}

.btn.small {
  min-height: 44px;
  padding: 0 20px;
}

/* ===============================
   Sub Hero
   Brighter gold accent
   No yellow circle
================================ */

.sub-hero {
  padding: 210px 0 90px;
  background:
    linear-gradient(
      180deg,
      #000 0%,
      #020202 18%,
      #070707 56%,
      #0b0b0b 100%
    );
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      125deg,
      rgba(242,200,107,.22) 0%,
      rgba(242,200,107,.11) 15%,
      transparent 38%
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.032) 1px,
      transparent 1px
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.022) 1px,
      transparent 1px
    ),
    linear-gradient(
      104deg,
      transparent 0%,
      transparent 54%,
      rgba(242,200,107,.15) 54.2%,
      rgba(242,200,107,.06) 65%,
      transparent 78%
    );
  background-size: auto, 76px 76px, 76px 76px, auto;
  opacity: .42;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.96), rgba(0,0,0,.72) 48%, transparent 94%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.96), rgba(0,0,0,.72) 48%, transparent 94%);
  pointer-events: none;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.18) 44%,
      rgba(0,0,0,.70) 100%
    ),
    linear-gradient(
      100deg,
      transparent 0%,
      transparent 50%,
      rgba(242,200,107,.12) 50.3%,
      rgba(242,200,107,.04) 60%,
      transparent 74%
    );
  pointer-events: none;
}

.sub-hero .container {
  position: relative;
  z-index: 2;
}

.sub-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px,8vw,112px);
  line-height: .94;
  font-weight: 600;
  letter-spacing: -2px;
}

.sub-hero p {
  margin-top: 22px;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px,2vw,23px);
}

.eyebrow {
  display: inline-block;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section {
  position: relative;
  padding: 95px 0;
  background:
    linear-gradient(180deg, #050505 0%, #060606 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.015) 1px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 64%,
      rgba(242,200,107,.06) 64.2%,
      rgba(242,200,107,.025) 74%,
      transparent 86%
    );
  background-size: 96px 96px, auto;
  opacity: .40;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section.alt {
  background:
    linear-gradient(180deg, #090909 0%, #070707 100%) !important;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px,5vw,78px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -1.4px;
}

.section p {
  color: var(--muted);
  font-size: 16px;
}

.lead {
  font-size: 19px !important;
  line-height: 1.8 !important;
  color: var(--muted) !important;
}

.cards,
.project-grid,
.package-grid,
.portal-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.cards.three,
.package-grid {
  grid-template-columns: repeat(3,1fr);
}

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

.card,
.project-card,
.package-card,
.metric-card,
.empty-box,
.panel-form,
.portal-panel,
.analytics-card,
.stat {
  background: linear-gradient(145deg,var(--panel2),rgba(255,255,255,.035));
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 210px;
  box-shadow: 0 26px 80px rgba(0,0,0,.22);
}

.card h3,
.project-card h3,
.package-card h3,
.portal-panel h3,
.analytics-card h3,
.metric-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.04;
  margin-bottom: 14px;
}

.card p,
.project-card p,
.package-card p,
.portal-panel p,
.metric-card p {
  color: var(--muted);
  line-height: 1.75;
}

.card ul,
.package-card ul,
.portal-panel ul,
.legal-list {
  list-style: none;
  margin-top: 16px;
  color: var(--muted);
}

.card li,
.package-card li,
.portal-panel li,
.legal-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.card li:before,
.package-card li:before,
.portal-panel li:before,
.legal-list li:before {
  content: "—";
  color: var(--gold2);
  margin-right: 10px;
}

.process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
}

.process-item {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 190px;
}

.process-item:before {
  content: counter(step,decimal-leading-zero);
  display: block;
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.process-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  margin-bottom: 10px;
}

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-preview {
  height: 220px;
  background: linear-gradient(135deg,#1b1b1b,#070707);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.project-preview span {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  color: rgba(255,255,255,.24);
}

.project-body {
  padding: 28px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(242,200,107,.48);
  color: var(--gold2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 10px;
}

.status {
  border-color: rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.05);
}

.case-study {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.case-study strong {
  color: #fff;
}

.form-wrap {
  max-width: 900px;
}

.form-wrap.narrow {
  max-width: 560px;
}

.panel-form {
  display: grid;
  gap: 16px;
  min-height: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--line);
  color: #fff;
  padding: 17px 18px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242,200,107,.85);
  box-shadow: 0 0 0 3px rgba(242,200,107,.10);
}

label {
  color: var(--muted);
  font-size: 14px;
}

.alert {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.alert.success {
  border-color: rgba(127,224,161,.45);
  color: var(--success);
}

.alert.error {
  border-color: rgba(255,100,100,.45);
  color: var(--danger);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 35px;
  align-items: start;
}

.contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
}

.contact-box a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.portal-grid {
  grid-template-columns: repeat(3,1fr);
}

.portal-panel {
  min-height: 230px;
}

.dashboard-hero {
  padding-bottom: 50px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

.dashboard-side {
  background: #080808;
  border: 1px solid var(--line);
  padding: 24px;
  position: sticky;
  top: 20px;
  align-self: start;
}

.dashboard-side a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.dashboard-content {
  display: grid;
  gap: 28px;
}

.metrics-grid {
  grid-template-columns: repeat(4,1fr);
}

.metric-card {
  min-height: 145px;
}

.metric-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  margin: 5px 0;
  color: #fff;
}

.progress {
  height: 10px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin: 16px 0;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg,var(--gold2),var(--gold));
}

.table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.table th,
.table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  vertical-align: top;
}

.table th {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 20px;
}

.upload-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px;
  margin-bottom: 14px;
}

.faq-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  font-size: 42px;
  margin: 45px 0 15px;
}

.legal-content p {
  line-height: 1.85;
  margin-bottom: 12px;
}

.footer {
  background: #030303;
  border-top: 1px solid var(--line);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer h4 {
  font-size: 12px;
  color: var(--gold2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin: 10px 0;
}

.footer p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-logo .logo-main {
  font-size: 54px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: #030303;
}

.admin-sidebar {
  border-right: 1px solid var(--line);
  padding: 30px;
  background: #070707;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar nav {
  margin-top: 34px;
}

.admin-sidebar nav a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  color: var(--gold2);
}

.admin-main {
  padding: 45px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-top h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 62px;
  line-height: 1;
}

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

.stat {
  text-decoration: none;
  min-height: 140px;
}

.stat span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.3px;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
  margin-top: 8px;
}

.stat small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

.dashboard-link-card:hover {
  border-color: rgba(242,200,107,.65);
}

@media(max-width:1050px) {
  .nav-links {
    gap: 18px;
  }

  .cards,
  .cards.three,
  .package-grid,
  .portal-grid,
  .metrics-grid,
  .admin-grid {
    grid-template-columns: repeat(2,1fr);
  }

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

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

  .two-col,
  .contact-layout,
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

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

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-main {
    padding: 30px;
  }
}

@media(max-width:760px) {
  .site-header {
    padding: 24px 6%;
    align-items: flex-start;
  }

  .menu-btn {
    display: block;
    margin-top: 8px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100px;
    left: 6%;
    right: 6%;
    padding: 18px;
    background: #080808;
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero-content {
    padding-top: 210px;
  }

  .cards,
  .cards.three,
  .cards.two,
  .project-grid,
  .package-grid,
  .portal-grid,
  .metrics-grid,
  .process-list,
  .form-row,
  .footer-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    padding-top: 180px;
  }

  .section {
    padding: 70px 0;
  }

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

  .upload-grid {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 22px;
  }

  .table {
    min-width: 680px;
  }
}

/* ============================================================
   PREMIUM DESIGN SYSTEM — Phase 1 (homepage + shared)
   Black / charcoal / gold. Thin borders, glass panels,
   executive spacing, dashboard UI components.
   ============================================================ */

/* --- Sticky premium header --- */
.site-header {
  position: fixed;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, background .3s ease,
    border-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(6, 6, 6, .86);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
}

.nav-links {
  padding-top: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111 !important;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(242, 200, 107, .22);
  transition: .25s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #111 !important;
  box-shadow: 0 18px 44px rgba(242, 200, 107, .34);
}

/* --- Section kicker / label --- */
.wm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wm-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold2), rgba(242, 200, 107, 0));
}

.wm-lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
}

.wm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(242, 200, 107, .34);
  background: rgba(242, 200, 107, .07);
  color: var(--gold2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}

/* --- Premium feature cards --- */
.wm-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.wm-feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wm-feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.wm-feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% -10%, rgba(242, 200, 107, .12), transparent 42%),
    linear-gradient(150deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 30px 26px;
  min-height: 230px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1),
    border-color .3s ease, box-shadow .3s ease;
}

.wm-feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 200, 107, .7), transparent);
  opacity: .55;
}

.wm-feature:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 200, 107, .34);
  box-shadow: 0 30px 84px rgba(0, 0, 0, .4);
}

.wm-feature .wm-ic {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 22px;
  color: var(--gold2);
  background: linear-gradient(145deg, rgba(242, 200, 107, .16), rgba(242, 200, 107, .04));
  border: 1px solid rgba(242, 200, 107, .26);
}

.wm-feature .wm-ic svg { width: 24px; height: 24px; }

.wm-feature h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.08;
  margin-bottom: 12px;
  color: #fff;
}

.wm-feature p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
}

.wm-feature .wm-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(242, 200, 107, .5);
}

/* --- Industry pills --- */
.wm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.wm-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .018));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: .26s;
}

.wm-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 12px rgba(242, 200, 107, .6);
}

.wm-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 200, 107, .36);
  background: linear-gradient(145deg, rgba(242, 200, 107, .10), rgba(255, 255, 255, .03));
}

/* --- Process steps (4) --- */
.wm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.wm-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  padding: 30px 26px 28px;
  min-height: 210px;
  transition: transform .3s ease, border-color .3s ease;
}

.wm-step:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 200, 107, .3);
}

.wm-step .wm-step-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  line-height: 1;
  color: rgba(242, 200, 107, .85);
  margin-bottom: 18px;
}

.wm-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin-bottom: 10px;
  color: #fff;
}

.wm-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Why-us split list --- */
.wm-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.wm-why-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
  transition: border-color .3s ease, transform .3s ease;
}

.wm-why-item:hover {
  border-color: rgba(242, 200, 107, .28);
  transform: translateY(-4px);
}

.wm-why-item .wm-ic {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold2);
  background: rgba(242, 200, 107, .08);
  border: 1px solid rgba(242, 200, 107, .24);
}

.wm-why-item .wm-ic svg { width: 22px; height: 22px; }

.wm-why-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 7px;
  color: #fff;
}

.wm-why-item p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* --- Status chips --- */
.wm-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  white-space: nowrap;
}

.wm-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.wm-chip.ok { color: #7fe0a1; border-color: rgba(127, 224, 161, .4); background: rgba(127, 224, 161, .08); }
.wm-chip.pending { color: #f2c86b; border-color: rgba(242, 200, 107, .4); background: rgba(242, 200, 107, .08); }
.wm-chip.review { color: #8db4ff; border-color: rgba(141, 180, 255, .4); background: rgba(141, 180, 255, .08); }

/* ============================================================
   HOMEPAGE HERO — staged copy and actions
   ============================================================ */
.wm-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

.wm-hero-left { min-width: 0; }

.wm-hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(30px, 4.5vh, 50px);
}

.wm-hero-actions .cta {
  margin-top: 0;
  min-width: 0;
  min-height: 60px;
  padding: 0 28px;
}

.wm-hero-trust {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, .58);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* ============================================================
   SELECTED SYSTEMS / WORK
   ============================================================ */
.wm-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.wm-work {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.wm-work:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 200, 107, .32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.wm-work-top {
  height: 128px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 200, 107, .22), transparent 50%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #161616, #070707);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.wm-work-body { padding: 22px 22px 26px; }
.wm-work-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold2); }
.wm-work h3 { font-family: "Cormorant Garamond", serif; font-size: 26px; margin: 8px 0 10px; color: #fff; }
.wm-work p { color: var(--muted); font-size: 14px; line-height: 1.68; }
.wm-work-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .08); }
.wm-work-meta .feat { font-size: 12px; color: var(--soft); }

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.wm-cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(242, 200, 107, .22);
  border-radius: 26px;
  margin-top: 10px;
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 200, 107, .16), transparent 55%),
    linear-gradient(160deg, rgba(20, 18, 12, .9), rgba(6, 6, 6, .94));
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
}

.wm-cta-band h2 { color: #fff; margin: 0 auto; max-width: 16ch; }
.wm-cta-band p { max-width: 600px; margin: 20px auto 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.wm-cta-actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.wm-cta-actions .cta { margin-top: 0; }

/* ============================================================
   RESPONSIVE — premium components
   ============================================================ */
@media (max-width: 1100px) {
  .wm-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .wm-steps { grid-template-columns: repeat(2, 1fr); }
  .wm-work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .wm-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding-top: 16px; padding-bottom: 16px; }
  .nav-links .nav-cta {
    width: 100%;
    margin-top: 12px;
    padding: 15px 22px;
    border-radius: 12px;
    border-bottom: 0 !important;
  }
  .wm-feature-grid,
  .wm-steps,
  .wm-why,
  .wm-work-grid { grid-template-columns: 1fr; }
  .wm-hero-actions { flex-direction: column; align-items: stretch; }
  .wm-hero-actions .cta { width: 100%; }
}

/* ============================================================
   SHARED EXPERIENCE POLISH
   ============================================================ */
html {
  scroll-padding-top: 104px;
  scrollbar-color: rgba(242, 200, 107, .55) #080808;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(242, 200, 107, .9);
  outline-offset: 4px;
}

.site-header {
  contain: layout style;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
  transition: color .24s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 194, 201, .65), var(--gold2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-btn {
  border-radius: 10px;
  transition: border-color .25s ease, background .25s ease;
}

.menu-btn span {
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding-top: clamp(82px, 8vw, 128px);
  padding-bottom: clamp(82px, 8vw, 128px);
}

.section h2 {
  max-width: 18ch;
  text-wrap: balance;
}

.section p {
  text-wrap: pretty;
}

.cta,
.btn {
  border-radius: 10px;
  min-height: 56px;
  transition:
    transform .3s cubic-bezier(.16, 1, .3, 1),
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    filter .3s ease;
}

.cta {
  min-height: 62px;
}

.card,
.project-card,
.package-card,
.metric-card,
.empty-box,
.panel-form,
.portal-panel,
.analytics-card,
.stat {
  border-radius: 18px;
}

.footer {
  padding-top: clamp(64px, 7vw, 96px);
}

.footer a {
  transition: color .22s ease, transform .22s ease;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
}

.scroll-reveal.show {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover,
  .btn:hover {
    transform: translateY(-2px);
  }

  .card:hover,
  .project-card:hover,
  .package-card:hover,
  .portal-panel:hover,
  .analytics-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 200, 107, .28);
    box-shadow: 0 28px 76px rgba(0, 0, 0, .34);
  }

  .footer a:hover {
    color: var(--white);
    transform: translateX(2px);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 84px;
  }

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

  .nav-links {
    top: 82px;
    border-radius: 16px;
    background: rgba(8, 8, 8, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section h2 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .scroll-reveal,
  .scroll-reveal.show {
    opacity: 1;
    transform: none;
  }
}
