:root {
  --bg: #08131d;
  --bg-soft: #0d1d2c;
  --panel: rgba(8, 19, 29, 0.84);
  --panel-strong: rgba(11, 24, 37, 0.92);
  --sand: #f3ede2;
  --sand-deep: #ddd2c0;
  --text: #edf3f7;
  --text-strong: #ffffff;
  --ink: #0f2030;
  --ink-soft: #304859;
  --muted: #9fb0bf;
  --muted-dark: #44596a;
  --accent: #c79249;
  --electric: #7fd7ff;
  --accent-soft: rgba(199, 146, 73, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(10, 27, 40, 0.14);
  --shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 22px 52px rgba(0, 0, 0, 0.18);
  --radius: 1.5rem;
  --content-width: min(1160px, calc(100vw - 2rem));
  --narrow-width: min(760px, calc(100vw - 2rem));
  --ease: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  background:
    conic-gradient(from 180deg at 78% 18%, rgba(127, 215, 255, 0.12), transparent 22%, transparent 72%, rgba(199, 146, 73, 0.12)),
    radial-gradient(circle at top left, rgba(199, 146, 73, 0.18), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(127, 215, 255, 0.12), transparent 18%),
    radial-gradient(circle at bottom right, rgba(82, 115, 142, 0.22), transparent 22%),
    var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.page-light {
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(127, 215, 255, 0.08), transparent 18%),
    radial-gradient(circle at top left, rgba(199, 146, 73, 0.1), transparent 20%),
    linear-gradient(180deg, #f7f2e8 0%, #f1ece2 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18%;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at 16% 24%, rgba(127, 215, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(199, 146, 73, 0.16), transparent 20%),
    radial-gradient(circle at 68% 78%, rgba(98, 169, 255, 0.12), transparent 24%);
  filter: blur(28px);
  opacity: 0.9;
  animation: driftGlow 18s ease-in-out infinite alternate;
}

body::after {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(255, 255, 255, 0.02) 6rem 6.08rem),
    repeating-linear-gradient(180deg, transparent 0 6rem, rgba(255, 255, 255, 0.016) 6rem 6.08rem);
  opacity: 0.42;
  animation: sweepGrid 28s linear infinite;
}

body.page-light::before {
  opacity: 0.52;
  filter: blur(42px);
}

body.page-light::after {
  opacity: 0.22;
  background:
    linear-gradient(180deg, rgba(15, 32, 48, 0.015), transparent 24%, transparent 76%, rgba(15, 32, 48, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(15, 32, 48, 0.018) 6rem 6.08rem),
    repeating-linear-gradient(180deg, transparent 0 6rem, rgba(15, 32, 48, 0.014) 6rem 6.08rem);
}

main {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background-color var(--ease), border-color var(--ease), backdrop-filter var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 26, 0.82);
  border-color: rgba(127, 215, 255, 0.12);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}

.page-light .site-header.is-scrolled {
  background: rgba(247, 242, 232, 0.84);
  border-color: rgba(9, 28, 42, 0.08);
  box-shadow: 0 10px 34px rgba(29, 23, 14, 0.06);
}

.nav-shell {
  width: var(--content-width);
  margin: 0 auto;
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 22;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.72rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 201, 229, 0.14);
  background:
    linear-gradient(155deg, rgba(8, 20, 31, 0.98), rgba(15, 37, 55, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand-mark::before {
  content: "";
  width: 1.72rem;
  height: 1.72rem;
  background: url("brand-mark.svg") center / contain no-repeat;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%, transparent 70%, rgba(199, 146, 73, 0.12));
  pointer-events: none;
}

.brand-mark svg,
.brand-mark img {
  display: none;
}

.brand-lockup {
  display: grid;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-light .brand-mark {
  border-color: rgba(164, 201, 229, 0.14);
  background:
    linear-gradient(155deg, rgba(8, 20, 31, 0.98), rgba(15, 37, 55, 0.96));
}

.page-light .brand-subtitle {
  color: var(--muted-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  position: relative;
  z-index: 22;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  margin: 0.28rem auto;
  transition: transform var(--ease), opacity var(--ease);
}

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

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--text-strong);
}

.page-light .site-nav a {
  color: rgba(15, 32, 48, 0.92);
}

.page-light .site-nav a[aria-current="page"],
.page-light .site-nav a:hover {
  color: var(--ink);
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.site-nav a:not(.button):hover::after,
.site-nav a[aria-current="page"]:not(.button)::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #e1aa60, #b17832 58%, #7d5bc7 160%);
  color: #10151a;
  box-shadow:
    0 14px 38px rgba(199, 146, 73, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--text);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.page-light .button--secondary {
  border-color: rgba(15, 32, 48, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.page-light .button--ghost {
  border-color: rgba(10, 27, 40, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero::before,
.page-hero::before,
.section--dark::before,
.section--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%, transparent 74%, rgba(199, 146, 73, 0.06)),
    repeating-linear-gradient(90deg, transparent 0 4.8rem, rgba(255, 255, 255, 0.03) 4.8rem 4.9rem),
    repeating-linear-gradient(180deg, transparent 0 4.8rem, rgba(255, 255, 255, 0.02) 4.8rem 4.9rem);
  background-size: auto, 7.6rem 7.6rem, 7.6rem 7.6rem;
  opacity: 0.42;
  z-index: 0;
  animation: sweepGrid 24s linear infinite;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 17, 0.88) 0%, rgba(4, 11, 17, 0.68) 36%, rgba(4, 11, 17, 0.26) 66%, rgba(4, 11, 17, 0.44) 100%),
    linear-gradient(180deg, rgba(4, 11, 17, 0.18) 0%, rgba(4, 11, 17, 0.34) 100%),
    url("image-construction-progress-singapore.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, transparent 32%, rgba(127, 215, 255, 0.18) 49%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.65;
  transform: translateX(-120%);
  animation: scanSweep 10s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -12% auto;
  width: min(54vw, 48rem);
  height: min(54vw, 48rem);
  background:
    radial-gradient(circle, rgba(199, 146, 73, 0.24), transparent 46%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1), transparent 22%);
  filter: blur(22px);
  opacity: 0.7;
  pointer-events: none;
  animation: pulseHalo 14s ease-in-out infinite alternate;
}

.hero-grid,
.section-shell,
.footer-shell {
  width: var(--content-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  padding: 7.8rem 0 3rem;
}

.hero-copy {
  max-width: 39rem;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 1rem 0 1.25rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(237, 243, 247, 0.86);
}

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

.hero-meta {
  margin-top: 2.6rem;
  display: grid;
  gap: 0.8rem;
  max-width: 46rem;
}

.meta-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.94rem;
}

.meta-line span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.section {
  padding: clamp(4.5rem, 7vw, 8rem) 0;
  position: relative;
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(127, 215, 255, 0.06), transparent 18%),
    radial-gradient(circle at top right, rgba(199, 146, 73, 0.12), transparent 18%),
    linear-gradient(180deg, #f5efe5 0%, #efe8de 100%);
  color: var(--ink);
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(199, 146, 73, 0.15), transparent 20%),
    linear-gradient(180deg, #08131d 0%, #0d1d2c 100%);
  isolation: isolate;
}

.section--panel {
  background:
    linear-gradient(180deg, rgba(13, 29, 44, 0.95) 0%, rgba(8, 19, 29, 0.98) 100%);
  isolation: isolate;
}

.page-light .section--panel {
  color: var(--text);
}

.page-light .section--panel .button--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.page-light .section--panel .button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section-intro {
  display: grid;
  gap: 0.85rem;
  max-width: 44rem;
  margin-bottom: 2.2rem;
}

.section-intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-intro p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
}

.section-grid {
  display: grid;
  gap: 1.25rem;
}

.section-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.line-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) - 0.15rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
}

.section--sand .line-panel {
  border-color: rgba(10, 27, 40, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 243, 236, 0.94));
}

.line-panel strong {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.line-panel p {
  margin: 0;
  opacity: 0.82;
}

.service-index {
  display: grid;
  gap: 0;
}

.service-link {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
  gap: 1.3rem;
  align-items: end;
  padding: 1.5rem 1.35rem;
  border-radius: calc(var(--radius) - 0.1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition: gap var(--ease), transform var(--ease), border-color var(--ease), background var(--ease);
}

.section--sand .service-link {
  border-color: rgba(10, 27, 40, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 243, 236, 0.8));
}

.service-link:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section--sand .service-link:last-child {
  border-color: rgba(10, 27, 40, 0.12);
}

.service-link h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.02;
  transition: color var(--ease);
}

.service-link p {
  margin: 0;
  opacity: 1;
  max-width: 36ch;
}

.service-link span {
  color: var(--accent);
  font-size: 1.4rem;
  transition: transform var(--ease);
}

.service-link:hover {
  gap: 1.8rem;
  transform: translateY(-0.12rem);
  border-color: rgba(199, 146, 73, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.service-link:hover span {
  transform: translateX(0.3rem);
}

.section--sand .service-link:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 230, 0.98));
}

.media-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.feature-media {
  min-height: 32rem;
  border-radius: calc(var(--radius) + 0.6rem);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.feature-media,
.gallery-card,
.story-card,
.cta-band,
.signal-card,
.side-note,
.contact-panel,
.line-panel,
.article-block,
.metric-card,
.rail-card {
  backdrop-filter: blur(12px);
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.4rem auto;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 146, 73, 0.24), transparent 70%);
  backdrop-filter: blur(6px);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-cluster {
  display: grid;
  gap: 1.5rem;
}

.detail-list {
  display: grid;
  gap: 1.15rem;
}

.detail-list div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.section--sand .detail-list div {
  border-color: rgba(10, 27, 40, 0.12);
}

.detail-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", sans-serif;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-step {
  position: relative;
  padding-top: 4rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.08em;
  color: rgba(199, 146, 73, 0.68);
}

.process-step strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.process-step p,
.chip-list li,
.faq-item p,
.copy-block p,
.copy-block li {
  margin: 0;
  opacity: 1;
}

.chip-list,
.inline-list,
.link-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip-list li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.section--sand .chip-list li {
  border-color: rgba(10, 27, 40, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.faq-list {
  display: grid;
  gap: 0;
}

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

.faq-item {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section--sand .faq-item,
.section--sand .faq-item:last-child {
  border-color: rgba(10, 27, 40, 0.12);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: calc(var(--radius) + 0.85rem);
  background:
    linear-gradient(140deg, rgba(199, 146, 73, 0.22), rgba(14, 34, 50, 0.96)),
    rgba(14, 34, 50, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.section--sand .cta-band {
  background:
    linear-gradient(140deg, rgba(199, 146, 73, 0.24), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.92);
  border-color: rgba(10, 27, 40, 0.12);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 146, 73, 0.26), transparent 68%);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-band p {
  max-width: 36rem;
  margin: 0;
  opacity: 1;
}

.cta-band .hero-actions {
  margin-top: 1.4rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 3.8rem;
  background:
    linear-gradient(180deg, rgba(5, 12, 18, 0.66), rgba(5, 12, 18, 0.84)),
    url("image-construction-progress-singapore.png");
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 16rem;
  background: linear-gradient(180deg, transparent, rgba(8, 19, 29, 0.96));
}

.page-light .page-hero {
  background:
    linear-gradient(180deg, rgba(5, 12, 18, 0.54), rgba(5, 12, 18, 0.72)),
    url("image-construction-progress-singapore.png");
  background-size: cover;
  background-position: center;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.page-hero-copy .lede {
  color: rgba(237, 243, 247, 0.9);
}

.page-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.summary-item {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.summary-item span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.section--sand .section-intro p,
.section--sand .line-panel p,
.section--sand .faq-item p,
.section--sand .copy-block p,
.section--sand .copy-block li,
.section--sand .gallery-card p,
.section--sand .footer-copy,
.section--sand .metric-card,
.section--sand .detail-list div,
.section--sand .chip-list li,
.page-light .footer-copy,
.page-light .footer-meta,
.page-light .form-note,
.page-light .status-text,
.page-light .contact-helper {
  color: var(--ink-soft);
}

.section--dark .section-intro p,
.section--panel .section-intro p,
.section--dark .line-panel p,
.section--panel .line-panel p,
.section--dark .faq-item p,
.section--panel .faq-item p,
.section--dark .copy-block p,
.section--dark .copy-block li,
.section--panel .copy-block p,
.section--panel .copy-block li,
.section--dark .detail-list div,
.section--panel .detail-list div,
.section--dark .footer-copy,
.section--panel .footer-copy,
.section--dark .metric-card,
.section--panel .metric-card,
.section--dark .chip-list li,
.section--panel .chip-list li {
  color: rgba(237, 243, 247, 0.84);
}

.section--dark .service-link p,
.section--panel .service-link p,
.section--dark .story-card p,
.section--panel .story-card p,
.section--dark .story-card__meta,
.section--panel .story-card__meta {
  color: rgba(237, 243, 247, 0.84);
}

.copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 1rem;
}

.copy-block h2,
.copy-block h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.copy-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

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

.gallery-card {
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.section--sand .gallery-card {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(10, 27, 40, 0.1);
}

.gallery-card img {
  width: 100%;
  object-fit: cover;
}

.gallery-card--portrait img {
  aspect-ratio: 4 / 5;
}

.gallery-card--landscape img {
  aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1rem 1.1rem;
}

.gallery-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.gallery-card p {
  margin: 0;
  opacity: 0.8;
}

.side-note {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.page-light .side-note {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(10, 27, 40, 0.1);
}

.page-light .side-note,
.page-light .contact-panel--form,
.page-light .article-block,
.page-light .metric-card {
  color: var(--ink);
}

.side-note h3 {
  margin-top: 0;
}

.side-note ul {
  margin: 0;
  padding-left: 1rem;
}

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

.service-columns div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-light .service-columns div {
  border-color: rgba(10, 27, 40, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-panel {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 27, 40, 0.08);
  box-shadow: 0 30px 70px rgba(44, 40, 34, 0.08);
}

.contact-panel--signal {
  background:
    linear-gradient(160deg, rgba(9, 24, 36, 0.98), rgba(17, 39, 58, 0.94));
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel--signal h2,
.contact-panel--signal h3,
.contact-panel--signal strong {
  color: var(--text-strong);
}

.contact-panel--signal .contact-meta div {
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-panel--signal a {
  color: var(--text);
}

.contact-panel--signal .copy-block li,
.contact-panel--signal .contact-helper {
  color: rgba(237, 243, 247, 0.76);
}

.contact-panel--form {
  background: rgba(255, 255, 255, 0.9);
}

.contact-panel h2,
.contact-panel h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-meta div {
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 27, 40, 0.1);
}

.contact-meta a,
.footer-links a {
  overflow-wrap: anywhere;
}

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

.contact-action {
  width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.contact-action--whatsapp {
  background: linear-gradient(135deg, #35c46a, #1f9b53);
  box-shadow: 0 14px 34px rgba(31, 155, 83, 0.22);
  color: #05130a;
}

.contact-helper {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: var(--muted-dark);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

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

.field--stacked {
  gap: 0.7rem;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

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

.service-choice {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.service-choice input,
.reply-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-choice__body {
  display: grid;
  gap: 0.28rem;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(10, 27, 40, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 238, 0.92));
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.service-choice strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.1;
}

.service-choice small {
  color: var(--muted-dark);
  line-height: 1.45;
}

.service-choice input:checked + .service-choice__body {
  border-color: rgba(199, 146, 73, 0.4);
  background:
    linear-gradient(145deg, rgba(15, 37, 55, 0.98), rgba(9, 24, 36, 0.98));
  box-shadow: 0 18px 32px rgba(9, 24, 36, 0.18);
  transform: translateY(-0.08rem);
}

.service-choice input:checked + .service-choice__body strong {
  color: var(--text-strong);
}

.service-choice input:checked + .service-choice__body small {
  color: rgba(237, 243, 247, 0.76);
}

.reply-picker {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 0.65rem;
}

.reply-choice {
  position: relative;
  cursor: pointer;
}

.reply-choice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  min-width: 7.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 27, 40, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 600;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.reply-choice input:checked + span {
  background: rgba(15, 37, 55, 0.98);
  color: var(--text);
  border-color: rgba(199, 146, 73, 0.36);
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  border-radius: 1rem;
  border: 1px solid rgba(10, 27, 40, 0.14);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.9rem 1rem;
  color: var(--ink);
  resize: vertical;
  min-width: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(199, 146, 73, 0.3);
  border-color: rgba(199, 146, 73, 0.48);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-text {
  min-height: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.visual-cover,
.story-card__visual,
.feature-visual {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(150deg, rgba(10, 24, 36, 0.98), rgba(15, 36, 54, 0.92));
}

.visual-cover {
  min-height: 19rem;
}

.gallery-card--portrait .visual-cover {
  min-height: 24rem;
}

.story-card__visual {
  aspect-ratio: 16 / 10;
}

.feature-visual {
  min-height: 32rem;
}

.visual-cover::before,
.story-card__visual::before,
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 3.8rem, rgba(255, 255, 255, 0.045) 3.8rem 3.9rem),
    repeating-linear-gradient(180deg, transparent 0 3.8rem, rgba(255, 255, 255, 0.03) 3.8rem 3.9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.04));
  opacity: 0.72;
  animation: sweepGrid 26s linear infinite;
}

.visual-cover::after,
.story-card__visual::after,
.feature-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(127, 215, 255, 0.32), transparent 48%),
    radial-gradient(circle at 36% 36%, rgba(255, 255, 255, 0.12), transparent 22%);
  filter: blur(10px);
  animation: pulseHalo 14s ease-in-out infinite alternate;
}

.visual-cover--drone,
.story-card__visual--drone,
.feature-visual--drone {
  background:
    linear-gradient(145deg, rgba(12, 31, 48, 0.98), rgba(21, 53, 74, 0.92));
}

.visual-cover--trench,
.story-card__visual--trench,
.feature-visual--trench {
  background:
    linear-gradient(145deg, rgba(23, 20, 32, 0.98), rgba(62, 41, 26, 0.92));
}

.visual-cover--compliance,
.story-card__visual--compliance,
.feature-visual--compliance {
  background:
    linear-gradient(145deg, rgba(9, 24, 36, 0.98), rgba(23, 42, 52, 0.92));
}

.visual-cover--digital,
.story-card__visual--digital,
.feature-visual--digital {
  background:
    linear-gradient(145deg, rgba(14, 21, 38, 0.98), rgba(28, 39, 76, 0.92));
}

.visual-cover--field,
.story-card__visual--field,
.feature-visual--field {
  background:
    linear-gradient(145deg, rgba(9, 29, 39, 0.98), rgba(23, 74, 78, 0.92));
}

.visual-copy {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.visual-copy span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(127, 215, 255, 0.88);
}

.visual-copy strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-light .site-footer {
  border-color: rgba(10, 27, 40, 0.1);
}

.footer-shell {
  display: grid;
  gap: 1.8rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer-links,
.link-list {
  display: grid;
  gap: 0.6rem;
}

.footer-heading {
  margin: 0 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.footer-copy {
  max-width: 22rem;
  margin: 0;
  opacity: 0.76;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  opacity: 0.74;
}

.page-light .footer-meta {
  border-color: rgba(10, 27, 40, 0.1);
}

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

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

.signal-grid,
.insight-grid,
.related-grid {
  display: grid;
  gap: 1rem;
}

.signal-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 2rem;
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: calc(var(--radius) - 0.1rem);
  background:
    linear-gradient(165deg, rgba(10, 25, 38, 0.96), rgba(12, 32, 49, 0.88));
  border: 1px solid rgba(127, 215, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 215, 255, 0.16), transparent 68%);
}

.signal-card__value {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--text-strong);
}

.signal-card__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric);
}

.signal-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(237, 243, 247, 0.76);
}

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

.story-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.1rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(11, 24, 37, 0.92), rgba(9, 20, 30, 0.96));
  box-shadow: var(--shadow);
}

.section--sand .story-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 230, 0.98));
  border-color: rgba(10, 27, 40, 0.1);
  color: var(--ink);
}

.story-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.story-card:hover .story-card__image img {
  transform: scale(1.04);
}

.story-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.15rem 1.15rem 1.2rem;
}

.story-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.section--sand .story-card__meta {
  color: var(--muted-dark);
}

.story-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(127, 215, 255, 0.1);
  color: var(--electric);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--sand .story-card__tag {
  background: rgba(10, 27, 40, 0.06);
  color: var(--ink);
}

.story-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.story-card p {
  margin: 0;
  opacity: 0.8;
}

.story-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  color: var(--accent);
  font-weight: 600;
}

.story-card__link span {
  transition: transform var(--ease);
}

.story-card:hover .story-card__link span {
  transform: translateX(0.2rem);
}

.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.link-cluster a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.section--sand .link-cluster a {
  border-color: rgba(10, 27, 40, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.article-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 243, 247, 0.66);
}

.page-light .breadcrumb-list {
  color: rgba(15, 32, 48, 0.56);
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  opacity: 0.5;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.article-body,
.article-rail {
  display: grid;
  gap: 1.1rem;
}

.article-block {
  padding: 1.55rem;
  border-radius: calc(var(--radius) - 0.08rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
}

.page-light .article-block {
  border-color: rgba(10, 27, 40, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 233, 0.98));
}

.article-block h2,
.article-block h3 {
  margin: 0 0 0.7rem;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.article-block p:last-child,
.article-block ul:last-child,
.article-block ol:last-child {
  margin-bottom: 0;
}

.article-block ul,
.article-block ol {
  padding-left: 1.15rem;
}

.article-block li + li {
  margin-top: 0.45rem;
}

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

.metric-card {
  padding: 1.2rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.page-light .metric-card {
  border-color: rgba(10, 27, 40, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.metric-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.08;
}

.rail-card {
  padding: 1.35rem;
  border-radius: calc(var(--radius) - 0.08rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(9, 24, 36, 0.98), rgba(17, 39, 58, 0.94));
  box-shadow: var(--shadow-soft);
}

.rail-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
}

.rail-card p,
.rail-card li {
  color: rgba(237, 243, 247, 0.76);
}

.rail-card ul {
  margin: 0;
  padding-left: 1rem;
}

.lead-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 0.55rem);
  background:
    linear-gradient(145deg, rgba(9, 24, 36, 0.98), rgba(17, 39, 58, 0.94));
  border: 1px solid rgba(127, 215, 255, 0.12);
  box-shadow: var(--shadow);
}

.lead-band p {
  margin: 0;
  color: rgba(237, 243, 247, 0.82);
}

.lead-form {
  display: grid;
  gap: 0.95rem;
}

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

.lead-form .field,
.lead-form .field--full {
  display: grid;
  gap: 0.42rem;
}

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

.lead-form label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(237, 243, 247, 0.82);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem;
  color: var(--text);
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(237, 243, 247, 0.52);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(127, 215, 255, 0.24);
  border-color: rgba(127, 215, 255, 0.28);
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lead-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
  color: rgba(237, 243, 247, 0.7);
}

.action-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem;
  min-width: min(22rem, calc(100vw - 2rem));
  border-radius: 1.35rem;
  border: 1px solid rgba(127, 215, 255, 0.14);
  background: rgba(7, 18, 29, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.action-dock__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(127, 215, 255, 0.84);
}

.action-dock__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.08;
  color: var(--text-strong);
}

.action-dock__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body.has-action-dock {
  padding-bottom: 8rem;
}

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

@keyframes driftGlow {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5%, 2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(2.5%, -2%, 0) scale(1.08);
  }
}

@keyframes sweepGrid {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 7.6rem 0, 0 7.6rem;
  }
}

@keyframes pulseHalo {
  0% {
    transform: scale(0.94);
    opacity: 0.48;
  }
  100% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes scanSweep {
  0%,
  18% {
    transform: translateX(-120%);
    opacity: 0;
  }
  28%,
  72% {
    opacity: 0.65;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .section-grid--three,
  .section-grid--two,
  .gallery-grid,
  .gallery-grid--two,
  .media-split,
  .contact-grid,
  .copy-grid,
  .footer-top,
  .page-summary,
  .process-list,
  .service-columns,
  .faq-grid,
  .form-grid,
  .signal-grid,
  .insight-grid,
  .related-grid,
  .metric-strip,
  .article-grid,
  .lead-band,
  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .service-link {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .meta-line {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .service-picker {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 6.5rem 1rem 1.5rem;
    background: rgba(5, 12, 18, 0.96);
    transform: translateY(-100%);
    transition: transform var(--ease);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .page-light .site-nav {
    background: rgba(247, 242, 232, 0.98);
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.05rem;
  }

  .brand {
    gap: 0.7rem;
  }

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

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .hero-grid {
    padding-top: 7rem;
  }

  .hero-copy,
  .page-hero-copy {
    padding-left: 0.9rem;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .feature-media {
    min-height: 20rem;
  }

  .cta-band,
  .contact-panel,
  .side-note {
    padding: 1.35rem;
  }

  .service-picker,
  .reply-picker,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .reply-picker {
    display: grid;
  }

  .form-actions {
    display: grid;
  }

  .reply-choice span {
    width: 100%;
    min-width: 0;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .action-dock {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 0;
  }

  .action-dock__actions,
  .lead-form__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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