/* =========================================================
   ICAP India design system
   Brand Guide: navy, crimson, gold and warm white
   ========================================================= */
:root {
  --navy: #2c2d5b;
  --navy-deep: #191a3d;
  --navy-soft: #3c3e73;
  --crimson: #c8102e;
  --crimson-dark: #a60d26;
  --gold: #b8960c;
  --warm-white: #f5f3ee;
  --pale-lavender: #e8e8f4;
  --deep-teal: #0d4f6c;
  --white: #ffffff;
  --black: #000000;
  --ink: #191a2f;
  --text: #4c4d61;
  --muted: #76778a;
  --line: #d9d9e2;
  --focus: #b8960c;
  --shadow-sm: 0 12px 34px rgba(25, 26, 61, 0.08);
  --shadow-lg: 0 28px 70px rgba(25, 26, 61, 0.18);
  --radius: 14px;
  --shell: 1240px;
  --display: Futura, "Futura PT", "Century Gothic", "Avenir Next", sans-serif;
  --body: "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--warm-white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button {
  font-family: var(--body);
}

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

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--crimson);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy-deep);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 9vw, 132px) 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--crimson);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker-light {
  color: #ff9bab;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.32rem;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Header and dropdown navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(44, 45, 91, 0.12);
  box-shadow: 0 5px 22px rgba(25, 26, 61, 0.04);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(calc(100% - 48px), var(--shell));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 151px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--navy);
}

.nav-list,
.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  min-height: 44px;
  padding: 12px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 0.81rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-menu-button[aria-expanded="true"] {
  color: var(--crimson);
  background: rgba(200, 16, 46, 0.06);
}

.nav-link svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 160ms ease;
}

.nav-menu-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-contact {
  margin-left: 6px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--navy);
}

.nav-contact:hover {
  color: var(--white);
  background: var(--crimson);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: 0;
  width: 218px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid rgba(44, 45, 91, 0.12);
  border-top: 3px solid var(--crimson);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
}

.nav-menu-wide {
  width: 260px;
}

.nav-menu-button[aria-expanded="true"] + .nav-menu,
.has-menu:focus-within .nav-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--ink);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--crimson);
  background: var(--warm-white);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  padding: 80px 0 60px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 80% 24%, rgba(13, 79, 108, 0.62), transparent 32%),
    linear-gradient(125deg, var(--navy-deep), var(--navy) 74%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 55%);
}

.hero-motif {
  position: absolute;
  right: clamp(-170px, -8vw, -80px);
  top: 50%;
  z-index: -1;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  opacity: 0.14;
  transform: translateY(-50%);
}

.hero-motif span {
  position: absolute;
  width: 54%;
  height: 54%;
  border-radius: 48% 0 48% 0;
  background: var(--white);
}

.hero-motif span:first-child {
  top: 3%;
  left: 8%;
}

.hero-motif span:last-child {
  right: 8%;
  bottom: 3%;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

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

.hero .kicker {
  color: #ff9bab;
}

.hero-lead {
  max-width: 790px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.6;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.arrow-link:hover {
  color: #ff9bab;
}

.hero-stat {
  padding: 28px 0 4px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stat strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.hero-stat span {
  display: block;
  max-width: 320px;
  font-size: 0.9rem;
}

/* =========================================================
   About sections
   ========================================================= */
.group-section {
  background: var(--white);
}

.india-section {
  position: relative;
  overflow: hidden;
  background: var(--pale-lavender);
}

.india-motif {
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 380px;
  height: 380px;
  opacity: 0.05;
  border-radius: 48% 0 48% 0;
  background: var(--navy);
}

.editorial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.7fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 92px);
}

.section-marker,
.section-number {
  color: rgba(44, 45, 91, 0.28);
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-copy {
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid rgba(44, 45, 91, 0.18);
}

.section-copy p {
  margin-bottom: 22px;
}

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

.section-copy .lead-copy {
  color: var(--ink);
  font-size: clamp(1.22rem, 1.9vw, 1.55rem);
  line-height: 1.58;
}

/* =========================================================
   Markets
   ========================================================= */
.markets-section {
  background: var(--warm-white);
}

.section-heading-row {
  margin-bottom: 54px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-number {
  margin: 0 0 10px;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.market-card {
  position: relative;
  min-height: 450px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(44, 45, 91, 0.13);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 110px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.market-card:hover {
  border-top-color: var(--crimson);
  box-shadow: 0 22px 54px rgba(25, 26, 61, 0.13);
  transform: translateY(-5px);
}

.market-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  color: var(--crimson);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-card h3 {
  min-height: 2.4em;
  margin-bottom: 20px;
}

.market-card p {
  margin-bottom: 30px;
  font-size: 0.94rem;
}

.desk-contact {
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.79rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* =========================================================
   I-Stream and technology
   ========================================================= */
.istream-section {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-deep);
}

.istream-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background: radial-gradient(circle at 18% 25%, var(--deep-teal), transparent 32%);
}

.istream-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.istream-section h2 {
  color: var(--white);
}

.istream-copy > p:not(.kicker) {
  font-size: 1.05rem;
}

.product-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.product-list li {
  padding: 16px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-window {
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.42);
}

.window-bar {
  height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9ea3ad;
  background: #292b31;
  border-bottom: 1px solid #42454d;
  font-size: 0.7rem;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #727680;
}

.window-bar span:first-child {
  background: var(--crimson);
}

.window-bar b {
  margin-left: 9px;
  font-weight: 500;
}

.window-canvas {
  min-height: 430px;
  padding: 22px;
  display: grid;
  place-items: center;
  background: #050505;
}

.window-canvas img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.technology-section {
  background: var(--pale-lavender);
}

.technology-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 10vw, 150px);
}

.technology-lines {
  border-top: 1px solid rgba(44, 45, 91, 0.2);
}

.technology-lines > div {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  color: var(--navy);
  border-bottom: 1px solid rgba(44, 45, 91, 0.2);
}

.technology-lines span {
  color: var(--crimson);
  font-size: 0.7rem;
  font-weight: 700;
}

.technology-lines strong {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

/* =========================================================
   Leadership and careers
   ========================================================= */
.leadership-section {
  background: var(--white);
}

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

.profile-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(44, 45, 91, 0.12);
  border-radius: var(--radius);
}

.profile-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--deep-teal));
}

.profile-placeholder::before,
.profile-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.profile-placeholder::before {
  top: 48px;
  width: 58px;
  height: 58px;
}

.profile-placeholder::after {
  bottom: -22px;
  width: 142px;
  height: 142px;
}

.profile-placeholder span {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 32px 32px;
}

.profile-copy {
  padding: 34px;
  align-self: end;
}

.profile-copy h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.profile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.careers-section {
  position: relative;
  padding: clamp(82px, 9vw, 120px) 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.77);
  background: var(--crimson);
}

.careers-motif {
  position: absolute;
  right: 8%;
  top: -130px;
  width: 420px;
  height: 420px;
  opacity: 0.1;
  border: 90px solid var(--white);
  border-radius: 48% 0 48% 0;
}

.careers-inner {
  position: relative;
}

.careers-section h2 {
  color: var(--white);
}

.careers-section p:last-child {
  margin: 0;
}

.careers-section a {
  color: var(--white);
  font-weight: 700;
}

/* =========================================================
   Regulatory information
   ========================================================= */
.regulatory-section {
  background: var(--warm-white);
}

.regulatory-heading {
  margin-bottom: 46px;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid rgba(44, 45, 91, 0.15);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 21px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--navy);
  font-weight: 700;
}

td {
  color: var(--text);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.information-table th {
  width: 31%;
  background: #f0eff5;
}

.document-grid {
  margin: 26px 0 clamp(84px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.document-card {
  min-height: 142px;
  padding: 24px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: start;
  gap: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(44, 45, 91, 0.14);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.document-card:hover {
  color: var(--navy);
  border-color: var(--crimson);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.document-card svg {
  width: 30px;
  height: 30px;
  color: var(--crimson);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-card span {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.document-card b {
  color: var(--crimson);
  font-weight: 400;
}

.compliance-block {
  min-width: 0;
  margin-top: 68px;
}

.compliance-title {
  margin-bottom: 22px;
}

.compliance-title h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.compliance-table th {
  width: 22%;
  background: #f0eff5;
}

/* =========================================================
   Contact and footer
   ========================================================= */
.contact-section {
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 10vw, 150px);
}

.contact-section h2 {
  color: var(--white);
}

.contact-details {
  font-style: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details > div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details span {
  color: #ff9bab;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 500;
}

.contact-details a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 44px 0;
  color: #b7b8c8;
  background: #111229;
  border-top: 4px solid var(--crimson);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-logo {
  padding: 7px 10px;
  background: var(--white);
  border-radius: 5px;
}

.footer-logo img {
  width: 112px;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--white);
}

.back-to-top {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

/* =========================================================
   Responsive layout
   ========================================================= */
@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    max-height: calc(100vh - 100px);
    padding: 14px;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid rgba(44, 45, 91, 0.14);
    border-top: 3px solid var(--crimson);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: block;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-contact {
    margin: 8px 0 0;
    justify-content: center;
  }

  .nav-menu {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0 12px;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-menu-button[aria-expanded="true"] + .nav-menu {
    max-height: 260px;
    padding-block: 4px 10px;
  }

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

  .market-card {
    min-height: 370px;
  }

  .istream-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  }
}

@media (max-width: 820px) {
  .shell,
  .header-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .editorial-grid,
  .istream-grid,
  .technology-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 58px;
  }

  .hero-stat {
    max-width: 530px;
  }

  .hero-motif {
    width: 520px;
    right: -260px;
  }

  .section-marker {
    display: none;
  }

  .section-copy {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(44, 45, 91, 0.18);
  }

  .istream-grid {
    gap: 56px;
  }

  .product-window {
    max-width: 680px;
  }

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

  .profile-card {
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

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

  .header-shell {
    min-height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .primary-nav {
    right: 16px;
    left: 16px;
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero {
    padding: 86px 0;
  }

  .hero-stat {
    padding-left: 20px;
  }

  .section-heading-row {
    margin-bottom: 38px;
  }

  .section-number {
    display: none;
  }

  .market-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: auto;
  }

  .market-card h3 {
    min-height: auto;
  }

  .window-canvas {
    min-height: 0;
    padding: 10px;
  }

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

  .profile-placeholder {
    min-height: 210px;
  }

  .careers-motif {
    right: -190px;
  }

  .information-table,
  .compliance-table {
    min-width: 660px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-motif,
  .india-motif,
  .careers-motif,
  .back-to-top {
    display: none;
  }

  .hero,
  .istream-section,
  .careers-section,
  .contact-section,
  .site-footer {
    color: var(--black);
    background: var(--white);
  }

  .hero h1,
  .istream-section h2,
  .careers-section h2,
  .contact-section h2,
  .contact-details strong,
  .contact-details a,
  .site-footer a {
    color: var(--black);
  }

  .section {
    padding: 38px 0;
  }

  .market-card,
  .table-wrap,
  .document-card,
  .product-window {
    box-shadow: none;
  }
}

/* =========================================================
   Multi-page evolution
   These components extend the original design system.
   ========================================================= */
.nav-link.is-current:not(.nav-contact),
.nav-menu-button.is-current {
  color: var(--crimson);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 170ms ease;
}

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

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--crimson);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-primary:hover {
  color: var(--white);
  background: var(--crimson);
}

.text-button {
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.text-button:hover {
  color: #ff9bab;
}

.dark-link {
  color: var(--navy);
}

.dark-link:hover {
  color: var(--crimson);
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(3.3rem, 6.3vw, 6rem);
}

.home-intro {
  background: var(--white);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-intro article {
  padding: clamp(34px, 5vw, 62px);
}

.home-intro article:first-child {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.home-intro article:last-child {
  padding-right: 0;
}

.home-intro h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.home-intro article > p:not(.kicker) {
  min-height: 8em;
}

.market-link-card {
  color: inherit;
  text-decoration: none;
}

.market-link-card:hover {
  color: inherit;
}

.market-link-card > span:last-child {
  margin-top: auto;
  color: var(--crimson);
  font-size: 0.76rem;
  font-weight: 700;
}

.home-market-grid .market-card {
  min-height: 360px;
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

.home-istream {
  color: rgba(255, 255, 255, 0.77);
  background: var(--navy-deep);
}

.home-istream h2 {
  color: var(--white);
}

.home-istream-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.home-istream .button {
  margin-top: 30px;
}

.spotfix-display,
.spotfix-inline {
  margin: 0;
}

.spotfix-display img,
.spotfix-inline img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.spotfix-display {
  padding: clamp(8px, 1.4vw, 18px);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32);
}

/* Page heroes */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: clamp(100px, 11vw, 150px) 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 80% 20%, rgba(13, 79, 108, 0.56), transparent 31%),
    linear-gradient(125deg, var(--navy-deep), var(--navy));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.11;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 62%);
}

.page-hero-motif {
  position: absolute;
  right: -100px;
  bottom: -170px;
  z-index: -1;
  width: 520px;
  height: 520px;
  opacity: 0.08;
  border: 100px solid var(--white);
  border-radius: 48% 0 48% 0;
}

.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.2rem, 6.2vw, 6rem);
}

.page-hero .shell > p:last-child,
.page-hero-split > div > p:not(.kicker) {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.page-hero-split .button {
  margin-top: 30px;
}

.hero-spotfix {
  max-width: 520px;
  justify-self: end;
}

.jump-links {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump-links a {
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 650;
  text-decoration: none;
}

.jump-links a:hover {
  color: var(--white);
  background: var(--crimson);
  border-color: var(--crimson);
}

/* About page */
.timeline-section {
  background: var(--white);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.timeline li > span {
  color: var(--crimson);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
}

.timeline h3 {
  margin-bottom: 10px;
}

.timeline p {
  max-width: 720px;
  margin-bottom: 0;
}

.leadership-red {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--crimson);
}

.leadership-red h2 {
  color: var(--white);
}

.leadership-motif {
  position: absolute;
  right: -130px;
  top: -190px;
  width: 510px;
  height: 510px;
  opacity: 0.08;
  border: 100px solid var(--white);
  border-radius: 48% 0 48% 0;
}

.red-profile-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.red-profile {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.red-profile > div:last-child {
  padding: 26px;
}

.red-profile h3 {
  margin-bottom: 7px;
  color: var(--white);
}

.red-profile p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.red-profile a {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.red-placeholder {
  min-height: 190px;
  background: rgba(25, 26, 61, 0.32);
}

/* Markets page */
.market-detail {
  padding: clamp(86px, 9vw, 132px) 0;
  scroll-margin-top: 80px;
  background: var(--white);
}

.market-detail-alt {
  background: var(--pale-lavender);
}

.market-detail-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.market-detail-title {
  position: sticky;
  top: 120px;
}

.market-index {
  margin-bottom: 40px;
  color: rgba(44, 45, 91, 0.22);
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.market-detail-title h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
}

.detail-icon {
  width: 52px;
  color: var(--crimson);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-detail-copy > p {
  max-width: 800px;
}

.market-detail-copy .lead-copy,
.platform-product .lead-copy {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.36rem);
  line-height: 1.66;
}

.source-summary {
  margin-bottom: 28px;
  padding: 19px 22px;
  color: var(--navy);
  background: rgba(44, 45, 91, 0.06);
  border-left: 3px solid var(--crimson);
  font-size: 0.96rem;
  font-weight: 650;
}

.production-contact {
  margin: 14px 0;
  color: var(--text);
  font-size: 0.8rem;
}

.market-facts {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-facts > div {
  padding: 26px;
  background: var(--warm-white);
  border: 1px solid rgba(44, 45, 91, 0.12);
  border-radius: 9px;
}

.market-detail-alt .market-facts > div {
  background: rgba(255, 255, 255, 0.66);
}

.market-facts h3 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.market-facts ul,
.plain-product-list {
  margin: 0;
  padding-left: 18px;
}

.market-facts li {
  margin: 8px 0;
  font-size: 0.88rem;
}

.value-note,
.desk-panel {
  margin-top: 18px;
  padding: 26px;
  border-radius: 9px;
}

.value-note {
  color: var(--white);
  background: var(--navy);
}

.value-note span,
.desk-panel > span {
  display: block;
  margin-bottom: 10px;
  color: #ff9bab;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-note p {
  margin-bottom: 0;
}

.value-note a {
  color: var(--white);
}

.desk-panel {
  background: var(--white);
  border-left: 4px solid var(--crimson);
  box-shadow: var(--shadow-sm);
}

.desk-panel h3 {
  margin-bottom: 5px;
}

.desk-panel p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.desk-panel a {
  display: block;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

/* I-Stream page */
.platform-overview {
  background: var(--white);
}

.plain-product-list li {
  margin: 10px 0;
}

.product-section {
  background: var(--warm-white);
}

.platform-product {
  padding: clamp(48px, 6vw, 74px) 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(35px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.platform-product:last-child {
  border-bottom: 1px solid var(--line);
}

.platform-product > div:last-child {
  max-width: 850px;
}

.platform-product h3 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.product-label span,
.product-label b {
  display: block;
}

.product-label span {
  margin-bottom: 14px;
  color: rgba(44, 45, 91, 0.3);
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
}

.product-label b {
  width: max-content;
  padding: 5px 8px;
  color: var(--white);
  background: var(--deep-teal);
  border-radius: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotfix-product .product-label b {
  background: var(--crimson);
}

.spotfix-inline {
  max-width: 630px;
  margin-top: 34px;
  padding: 10px;
  background: var(--black);
}

.features-section {
  background: var(--pale-lavender);
}

.section-heading-row > div > p:last-child {
  max-width: 730px;
}

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

.feature-grid article {
  min-height: 260px;
  padding: 27px;
  background: var(--white);
  border-top: 3px solid var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.feature-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--crimson);
  font-size: 0.68rem;
  font-weight: 700;
}

.feature-grid h3 {
  margin-bottom: 15px;
  font-size: 1.12rem;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.access-band {
  padding: clamp(72px, 8vw, 110px) 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--crimson);
}

.access-band h2 {
  color: var(--white);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: clamp(50px, 9vw, 120px);
}

.access-grid p {
  max-width: 680px;
}

/* Contact page */
.office-section {
  background: var(--white);
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
}

.office-details {
  font-style: normal;
  border-top: 1px solid var(--line);
}

.office-details > div {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.office-details span {
  color: var(--crimson);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-details strong {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(rgba(44,45,91,.89), rgba(44,45,91,.89)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,255,255,.14) 24px 25px);
  border-radius: var(--radius);
}

.map-placeholder svg {
  width: 52px;
  margin-bottom: 18px;
  fill: none;
  stroke: #ff9bab;
  stroke-width: 1.6;
}

.map-placeholder strong,
.map-placeholder span {
  display: block;
}

.map-placeholder strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.25rem;
}

.map-placeholder span {
  font-size: 0.75rem;
}

.desks-section {
  background: var(--pale-lavender);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  min-height: 250px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 4px solid var(--navy);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.contact-card-accent {
  color: rgba(255,255,255,.77);
  background: var(--crimson);
  border-top-color: var(--crimson-dark);
}

.contact-card > span {
  min-height: 3em;
  margin-bottom: 30px;
  color: var(--crimson);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: auto;
}

.contact-card a {
  display: block;
  margin-top: 5px;
  font-size: 0.81rem;
  overflow-wrap: anywhere;
}

.contact-card-accent > span,
.contact-card-accent h3,
.contact-card-accent a {
  color: var(--white);
}

.compact-documents {
  margin-top: 22px;
}

.compact-documents .document-card {
  min-height: 82px;
  padding: 18px 19px;
  align-items: center;
}

.compact-documents .document-card svg {
  width: 25px;
  height: 25px;
}

/* Multi-page responsive behavior */
@media (max-width: 1050px) {
  .red-profile-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .home-intro-grid,
  .home-istream-grid,
  .page-hero-split,
  .market-detail-grid,
  .access-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .home-intro article:first-child {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-intro article:last-child {
    padding-right: 0;
    padding-left: 0;
  }

  .home-intro article > p:not(.kicker) {
    min-height: 0;
  }

  .hero-spotfix {
    justify-self: start;
  }

  .market-detail-title {
    position: static;
  }

  .market-index {
    margin-bottom: 18px;
  }

  .timeline li {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 560px) {
  .red-profile-grid,
  .feature-grid,
  .contact-card-grid,
  .market-facts {
    grid-template-columns: 1fr;
  }

  .timeline li,
  .platform-product,
  .office-details > div {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding: 84px 0;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .platform-product {
    gap: 22px;
  }

  .map-placeholder {
    min-height: 260px;
  }

  .compact-documents .document-card {
    min-height: 76px;
  }
}


/* ICAP Premium Enhancements */
.hero-copy{max-width:640px;}
.home-hero h1{max-width:760px;line-height:1.05;}
.section{padding:90px 0;}
.hero-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:48px;}
.home-hero .hero-stats-grid{position:relative;z-index:1;margin-top:-24px;}
.hero-stat-card{padding:24px 20px;color:var(--white);background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);border-radius:10px;backdrop-filter:blur(8px);}
.hero-stat-card strong{display:block;margin-bottom:6px;color:#ff9bab;font-family:var(--display);font-size:clamp(1.45rem,2.4vw,2.1rem);line-height:1;}
.hero-stat-card span{color:rgba(255,255,255,.84);font-size:.8rem;font-weight:650;letter-spacing:.02em;}
.button{padding:16px 34px;border-radius:10px;}
.button:hover{box-shadow:0 10px 25px rgba(25,26,61,.12);}
@media (max-width:820px){.hero-stats-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.hero-stats-grid{grid-template-columns:1fr;}}

/* I-Stream product navigation and demo enquiry */
.product-jump-grid{position:relative;z-index:1;margin-top:0;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.product-jump-grid a{padding:18px 20px;display:grid;grid-template-columns:auto 1fr;column-gap:13px;align-items:center;color:var(--white);background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);border-radius:8px;text-decoration:none;transition:background-color 180ms ease,transform 180ms ease;}
.product-jump-grid a:hover{color:var(--white);background:var(--crimson);transform:translateY(-3px);}
.product-jump-grid span{color:#ff9bab;font-size:.72rem;font-weight:700;}
.product-jump-grid strong{font-family:var(--display);font-size:1.2rem;letter-spacing:-.03em;}
.product-jump-grid small{grid-column:2;color:rgba(255,255,255,.7);font-size:.7rem;}
.platform-product{scroll-margin-top:100px;}
.demo-grid{display:grid;grid-template-columns:minmax(270px,.8fr) minmax(0,1.2fr);gap:clamp(42px,8vw,112px);align-items:start;}
.demo-contact{margin-top:30px;display:grid;gap:4px;}
.demo-contact strong{color:var(--white);font-size:.82rem;}
.demo-contact a{color:var(--white);font-size:.9rem;}
.demo-form{padding:28px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;background:rgba(25,26,61,.2);border:1px solid rgba(255,255,255,.25);border-radius:10px;}
.demo-form div{display:grid;gap:6px;}.demo-form label{color:var(--white);font-size:.76rem;font-weight:700;}.demo-form input{width:100%;min-height:44px;padding:10px 12px;color:var(--ink);background:var(--white);border:0;border-radius:5px;font:inherit;}.demo-form .button{width:max-content;margin-top:5px;}.form-note{grid-column:1/-1;margin:0;color:rgba(255,255,255,.7);font-size:.74rem;}
@media (max-width:820px){.product-jump-grid,.demo-grid{grid-template-columns:1fr;}.product-jump-grid{margin-top:32px;}.demo-form{max-width:650px;}}
@media (max-width:560px){.demo-form{grid-template-columns:1fr;padding:20px;}.demo-form .button{width:100%;}}

.careers-listing{background:var(--white);}.job-list{border-top:1px solid var(--line);}.job-card{padding:30px 0;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:36px;border-bottom:1px solid var(--line);}.job-card .kicker{margin-bottom:10px;}.job-card h3{margin-bottom:12px;font-size:clamp(1.35rem,2.4vw,2rem);}.job-card p:last-child{max-width:690px;margin-bottom:0;}.careers-note{margin-top:32px;}@media (max-width:620px){.job-card{grid-template-columns:1fr;gap:22px;}.job-card .button{width:max-content;}}

/* Final responsive corrections */
.home-hero{min-height:calc(100svh - 74px);padding:clamp(36px,5vh,66px) 0 28px;}.home-hero .hero-layout{grid-template-columns:minmax(0,1fr);gap:0;align-items:center;}.home-hero .hero-copy{max-width:720px;}.home-hero h1{font-size:clamp(3rem,5.4vw,5.3rem);margin-bottom:14px;}.home-hero .hero-lead{max-width:680px;margin-bottom:18px;font-size:clamp(1rem,1.35vw,1.16rem);line-height:1.48;}.home-hero .hero-stat{display:none;}.home-hero .hero-stats-grid{margin-top:28px;gap:10px;}.hero-stat-card{padding:15px 16px;}.hero-stat-card strong{font-size:clamp(1.35rem,2.2vw,1.85rem);}.hero-stat-card span{font-size:.72rem;}.home-hero .button{min-height:44px;padding:11px 20px;}.istream-page-hero{min-height:auto;padding:76px 0 34px;}.istream-hero-copy{max-width:780px;}.istream-page-hero h1{font-size:clamp(3rem,5vw,5rem);}.istream-page-hero .hero-actions{gap:14px;}.product-jump-grid{margin-top:30px;}.product-jump-grid a{min-height:76px;padding:15px 18px;}.product-jump-grid small{display:none;}.feature-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.demo-form .button{color:var(--white);background:var(--navy);border-color:var(--navy);}.demo-form .button:hover{background:var(--navy-soft);}.demo-form{align-self:center;}.demo-grid{align-items:center;}@media (max-width:820px){.home-hero{min-height:auto;padding:74px 0 38px;}.home-hero .hero-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.feature-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}@media (max-width:560px){.home-hero .hero-stats-grid,.feature-grid{grid-template-columns:1fr;}.home-hero h1{font-size:3rem;}.product-jump-grid{grid-template-columns:1fr;}}

/* Refined I-Stream, careers and contact layouts */
.istream-hero-split{align-items:center;}.istream-hero-split .hero-spotfix{max-width:500px;}.istream-page-hero .istream-hero-copy{max-width:620px;}.istream-page-hero .hero-actions .button{min-height:40px;padding:9px 17px;font-size:.75rem;}.istream-page-hero .text-button{font-size:.76rem;}.product-jump-grid-compact{max-width:720px;margin-left:calc((100% - min(100% - 48px,var(--shell)))/2);}.product-jump-grid-compact a{min-height:52px;padding:10px 13px;}.product-jump-grid-compact strong{font-size:1rem;}.demo-form{display:none;}.demo-grid{grid-template-columns:1fr;max-width:760px;text-align:center;}.demo-contact{justify-items:center;}.demo-grid::after{content:"Arrange your personalised I-Stream demonstration with our product team.";padding:22px 28px;color:var(--navy);background:var(--white);border-radius:9px;font-size:1rem;box-shadow:var(--shadow-sm);}.careers-listing .job-list,.careers-listing .careers-note{display:none;}.careers-listing .section-heading-row{margin-bottom:0;}.careers-listing .section-heading-row > div{max-width:760px;}.careers-apply-panel{max-width:820px;margin:36px auto 0;padding:42px;display:grid;grid-template-columns:1fr auto;gap:30px;align-items:center;color:var(--white);background:var(--navy);border-radius:var(--radius);}.careers-apply-panel h3{margin:0 0 10px;color:var(--white);font-size:1.55rem;}.careers-apply-panel p{margin:0;color:rgba(255,255,255,.8);}.careers-apply-panel .button{color:var(--navy);background:var(--white);white-space:nowrap;}.map-placeholder{padding:0;overflow:hidden;}.map-placeholder a{width:100%;min-height:320px;display:grid;place-content:center;justify-items:center;color:var(--white);text-decoration:none;}.contact-page-intro{max-width:780px;margin-bottom:45px;}.contact-page-intro h1{font-size:clamp(2.7rem,5vw,4.5rem);}@media(max-width:820px){.istream-hero-split{grid-template-columns:1fr;}.istream-hero-split .hero-spotfix{justify-self:start;}.product-jump-grid-compact{margin-left:auto;}.careers-apply-panel{grid-template-columns:1fr;}.careers-apply-panel .button{width:max-content;}}@media(max-width:560px){.careers-apply-panel{padding:28px;}.istream-page-hero .hero-spotfix{display:none;}}

.spotfix-product .product-label b{background:var(--deep-teal);}.nav-contact,.nav-contact.is-current{color:var(--white);background:var(--navy);}.nav-contact:hover,.nav-contact.is-current:hover{color:var(--white);background:var(--crimson);}.careers-fx-profile{max-width:820px;margin:18px auto 0;padding:28px 32px;display:grid;grid-template-columns:1fr auto;gap:22px;align-items:center;background:var(--pale-lavender);border-left:4px solid var(--crimson);border-radius:9px;}.careers-fx-profile h3{margin:0 0 8px;font-size:1.45rem;}.careers-fx-profile p{margin:0;}@media(max-width:620px){.careers-fx-profile{grid-template-columns:1fr;padding:24px;}}
