:root {
  --ink: #080808;
  --ink-soft: #111111;
  --panel: #171717;
  --panel-2: #202020;
  --gold: #f2b422;
  --gold-light: #ffd66d;
  --gold-dark: #b87a08;
  --white: #ffffff;
  --paper: #f5f3ee;
  --muted: #bcb9b0;
  --text: #e9e7e1;
  --line: rgba(255, 255, 255, 0.14);
  --line-gold: rgba(242, 180, 34, 0.34);
  --danger: #ff8f86;
  --success: #6ee7a0;
  --radius-sm: 0.5rem;
  --radius: 1.1rem;
  --radius-lg: 1.7rem;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1200px;
  --font-sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Arial Narrow", "Aptos Display", Impact, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 180, 34, 0.1), transparent 27rem),
    linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.91);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0.35rem 0.55rem rgba(0, 0, 0, 0.35));
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.045em;
}

.brand-name small {
  margin-top: 0.32rem;
  color: var(--gold);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  border-radius: 999px;
  color: #d9d7d1;
  padding: 0.56rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(242, 180, 34, 0.12);
  color: var(--gold-light);
}

.nav-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  transform: translateY(-0.36rem);
}

.menu-toggle::after {
  transform: translateY(0.36rem);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.74rem 1.2rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(242, 180, 34, 0.08);
  color: var(--gold-light);
}

.button--ink {
  border-color: #777;
  color: var(--ink);
}

.button img {
  width: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.45rem;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.lede {
  max-width: 62ch;
  color: #d4d1c9;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 5rem);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(242, 180, 34, 0.18) 48.2% 48.7%, transparent 48.9%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 85%);
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

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

.hero h1 span {
  color: var(--gold);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-art {
  position: relative;
  isolation: isolate;
  min-height: 35rem;
  display: grid;
  place-items: center;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-art::before {
  width: 31rem;
  height: 31rem;
  border: 1px solid var(--line-gold);
  box-shadow: inset 0 0 0 5rem rgba(242, 180, 34, 0.025), 0 0 9rem rgba(242, 180, 34, 0.08);
}

.hero-art::after {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(242, 180, 34, 0.18), transparent 70%);
  filter: blur(20px);
}

.hero-logo {
  width: min(100%, 40rem);
  max-height: 38rem;
  object-fit: contain;
  filter: drop-shadow(0 2.5rem 2.5rem rgba(0, 0, 0, 0.5));
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

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

.proof-item {
  min-height: 8.5rem;
  display: grid;
  align-content: center;
  padding: 1.5rem clamp(1rem, 3vw, 2.25rem);
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.proof-label {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--paper {
  background: var(--paper);
  color: #383632;
}

.section--paper h2,
.section--paper h3 {
  color: var(--ink);
}

.section--paper .lede {
  color: #5b5851;
}

.section--compact {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-head > :last-child {
  justify-self: end;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform 180ms ease, border-color 180ms ease;
}

.card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3rem;
  height: 4.5rem;
  background: var(--gold);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
}

.card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-weight: 850;
  text-decoration: none;
}

.card-link img {
  width: 1rem;
}

.product-spotlight {
  border-block: 1px solid var(--line-gold);
  background:
    radial-gradient(circle at 12% 48%, rgba(242, 180, 34, 0.11), transparent 28rem),
    #0d0d0d;
}

.product-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.product-tags span {
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold-light);
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-console {
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: #090909;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.45);
}

.console-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-dot {
  color: var(--success);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.3rem rgba(110, 231, 160, 0.1);
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.console-grid div {
  min-height: 10rem;
  display: grid;
  align-content: end;
  background: linear-gradient(145deg, rgba(242, 180, 34, 0.06), transparent 55%), var(--panel);
  padding: 1.25rem;
}

.console-grid small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.console-grid strong {
  margin-top: 0.25rem;
  color: var(--white);
  font-size: 1.25rem;
}

.console-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.visual-panel {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 20%, rgba(242, 180, 34, 0.2), transparent 30%),
    repeating-linear-gradient(115deg, transparent 0 30px, rgba(255, 255, 255, 0.035) 31px 32px),
    #111;
  box-shadow: var(--shadow);
}

.road-line {
  position: absolute;
  right: -20%;
  bottom: 18%;
  width: 130%;
  height: 9rem;
  transform: rotate(-12deg);
  border-block: 1px solid rgba(242, 180, 34, 0.4);
  background: linear-gradient(90deg, transparent, rgba(242, 180, 34, 0.09), transparent);
}

.road-line::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 100%;
  border-top: 4px dashed rgba(255, 255, 255, 0.45);
}

.visual-copy {
  position: absolute;
  inset: auto 2rem 2rem;
  max-width: 26rem;
}

.visual-copy strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.visual-copy span {
  display: block;
  margin-top: 1rem;
  color: #d4d1c9;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1.05rem 0 1.05rem 2.3rem;
  border-top: 1px solid currentColor;
  border-color: rgba(128, 120, 105, 0.25);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 1.32rem;
  left: 0.2rem;
  width: 0.85rem;
  height: 0.42rem;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(6rem, 13vw, 11rem) clamp(4rem, 8vw, 7rem);
}

.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -0.04em;
  bottom: -0.17em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: clamp(8rem, 24vw, 23rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-hero--office {
  min-height: min(48rem, calc(100svh - 5rem));
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.74) 48%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.85), transparent 65%),
    url("/assets/images/sidhu-office-background.webp");
  background-position: center;
  background-size: cover;
}

.page-hero--office::after {
  display: none;
}

.page-hero--office .lede {
  max-width: 52ch;
  color: #ece8df;
}

.page-hero h1 {
  max-width: 13ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 2rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.85rem;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--gold);
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.feature {
  min-height: 17rem;
  background: var(--ink-soft);
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.feature-index {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.feature p {
  color: var(--muted);
}

.feature h2 {
  font-size: 2rem;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(33, 31, 27, 0.16);
  border-radius: var(--radius);
  background: rgba(33, 31, 27, 0.16);
}

.management-grid article {
  min-height: 13rem;
  background: #fff;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.management-grid h3 {
  color: var(--ink);
}

.management-grid p {
  margin-bottom: 0;
  color: #5b5851;
}

.gear-box-hero {
  padding-block: clamp(5rem, 10vw, 8rem);
  background:
    linear-gradient(110deg, rgba(242, 180, 34, 0.08), transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 83px, rgba(255, 255, 255, 0.02) 84px 85px);
}

.gear-box-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.gear-box-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.gear-box-mark {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 180, 34, 0.18), transparent 62%);
  box-shadow: inset 0 0 0 2rem rgba(242, 180, 34, 0.025), 0 0 7rem rgba(242, 180, 34, 0.08);
  text-align: center;
}

.gear-box-mark span,
.gear-box-mark strong {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.75;
  letter-spacing: -0.05em;
}

.gear-box-mark span { color: var(--white); }
.gear-box-mark strong { color: var(--gold); }
.gear-box-mark small {
  margin-top: 1.5rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.capability-grid article {
  min-height: 17rem;
  background: var(--panel);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.capability-grid article > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.ai-layout,
.plan-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.ai-orbit {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(184, 122, 8, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 180, 34, 0.2), transparent 60%);
}

.ai-orbit::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(184, 122, 8, 0.45);
  border-radius: 50%;
}

.ai-orbit strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.78;
  text-align: center;
}

.ai-orbit span {
  position: absolute;
  border: 1px solid rgba(184, 122, 8, 0.35);
  border-radius: 999px;
  background: var(--paper);
  color: var(--gold-dark);
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-orbit span:nth-child(1) { top: 8%; left: 18%; }
.ai-orbit span:nth-child(2) { top: 18%; right: 5%; }
.ai-orbit span:nth-child(3) { right: 12%; bottom: 10%; }

.assurance-note {
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold-dark);
  color: #5b5851;
  padding-left: 1rem;
  font-size: 0.9rem;
}

.plan-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
}

.plan-card {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(242, 180, 34, 0.12), transparent 48%), var(--panel);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.plan-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
  padding-left: 1.2rem;
  color: #d4d1c9;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  position: relative;
  min-height: 16rem;
  border-top: 1px solid var(--line-gold);
  padding: 3.5rem 1.5rem 1rem 0;
  counter-increment: step;
}

.process li::before {
  content: "0" counter(step);
  position: absolute;
  top: -0.95rem;
  left: 0;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold);
  padding: 0.18rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  transform: rotate(45deg);
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.process p {
  color: var(--muted);
}

.statement {
  border-top: 1px solid rgba(33, 31, 27, 0.22);
  border-bottom: 1px solid rgba(33, 31, 27, 0.22);
  padding-block: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.3vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.statement span {
  color: var(--gold-dark);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: clamp(1.35rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

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

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

.field--wide {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
  background: #0d0d0d;
  color: var(--white);
  padding: 0.84rem 0.9rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(242, 180, 34, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(242, 180, 34, 0.15);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #85827b;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  color: #d7d4cc;
  font-size: 0.88rem;
}

.check-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.24rem;
  accent-color: var(--gold);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-panel [aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.info-stack {
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.info-item {
  background: var(--ink);
  padding: 1.25rem 0;
}

.info-item span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-item strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--white);
  font-size: 1.08rem;
}

.info-item address,
.footer-address {
  font-style: normal;
}

.privacy-copy {
  max-width: 780px;
}

.privacy-copy h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.privacy-copy h3 {
  margin-top: 2rem;
}

.privacy-copy p,
.privacy-copy li {
  color: #cbc8c0;
}

.privacy-copy a {
  color: var(--gold-light);
}

.callout {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: rgba(242, 180, 34, 0.06);
  padding: clamp(1.4rem, 4vw, 2.25rem);
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-gold);
  background:
    linear-gradient(110deg, rgba(242, 180, 34, 0.14), transparent 55%),
    var(--panel);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.cta-grid h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.1fr) repeat(2, minmax(10rem, 0.45fr));
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.footer-brand .brand-mark {
  width: 8rem;
  height: 7rem;
}

.footer-brand p {
  max-width: 36rem;
  color: var(--muted);
}

.footer-address {
  margin-top: 1.25rem;
  color: #d2cfc8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #d2cfc8;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
  color: #929089;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1140px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    padding-bottom: 1rem;
  }

  .primary-nav[data-open="true"] {
    display: block;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }

  .nav-link {
    padding: 0.8rem;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-copy {
    max-width: 52rem;
  }

  .hero-art {
    min-height: 28rem;
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .brand-name small {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 1rem;
    padding-block: 4rem 2.5rem;
  }

  .hero-art {
    min-height: 20rem;
  }

  .hero-art::before {
    width: 20rem;
    height: 20rem;
  }

  .page-hero--office {
    min-height: 38rem;
    background-image:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.55)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.9), transparent 70%),
      url("/assets/images/sidhu-office-background.webp");
    background-position: 54% center;
  }

  .proof-grid,
  .cards,
  .feature-grid,
  .management-grid,
  .capability-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:last-child {
    min-height: 6rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section-head,
  .split,
  .product-spotlight-grid,
  .gear-box-hero-grid,
  .ai-layout,
  .plan-layout,
  .form-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .section-head > :last-child {
    justify-self: start;
  }

  .visual-panel {
    min-height: 27rem;
  }

  .gear-box-mark {
    width: min(100%, 24rem);
    justify-self: center;
  }

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

  .process li {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .process li:not(:last-child)::after {
    display: none;
  }

  .field--wide {
    grid-column: auto;
  }

  .cta-grid .cta-actions {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav-list {
    grid-template-columns: 1fr;
  }

  .brand-name strong {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .card,
  .form-panel,
  .callout {
    border: 2px solid ButtonText;
  }
}
