/* =========================================================
   DESIGNER PLATFORMS – APPLE-GRADE PREMIUM (RED/WHITE/BLACK)
   Watermark: subtle geometric drift + premium brand feel
   ========================================================= */

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button { font-family: inherit; }
[hidden] { display: none !important; }

/* TOKENS */
:root{
  --red: #B22046;
  --black: #07080B;
  --ink: #0B0D12;
  --paper: #FFFFFF;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --shadow: 0 18px 60px rgba(0,0,0,0.12);
  --shadow2: 0 10px 30px rgba(0,0,0,0.10);

  --maxw: 1160px;
  --pad: 22px;

  --ease: 240ms cubic-bezier(.2,.8,.2,1);
  --reveal-ease: 1200ms cubic-bezier(.16, 1, .3, 1);
  --reveal-blur: 0px; /* UPDATED: remove blur to avoid pixelated images */

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;

  /* sticky header offset for anchor jumps */
  --anchor-offset: 92px;
}

/* BODY */
body{
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* Anchor jump offset (prevents headings hiding behind sticky nav) */
[id]{ scroll-margin-top: var(--anchor-offset); }

/* BACKDROP */
.bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid{
  position:absolute;
  inset: -2px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(closest-side at 50% 20%, rgba(0,0,0,0.95), transparent 70%);
  opacity: 0.55;
}

/* =========================================================
   WATERMARK (SUBTLE, SMALL, “GEOMETRIC DRIFT”)
   ========================================================= */
.bg-mark{
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* visibility dial (primary control) */
  opacity: 0.045; /* adjust 0.035–0.06 */

  mix-blend-mode: soft-light;
  filter: grayscale(1) contrast(0.86) brightness(1.85);

  background-image:
    url("images/logo.png"),
    url("images/logo.png"),
    url("images/logo.png"),
    url("images/logo.png");

  background-repeat: repeat, repeat, repeat, repeat;

  /* smaller marks + airy spacing; Y ~= X*0.866 for hex/tri lattice feel */
  background-size:
    58px 50px,
    58px 50px,
    66px 58px,
    66px 58px;

  /* staggered offsets to avoid a “perfect grid” impression */
  background-position:
    0 0,
    29px 25px,
    12px 16px,
    46px 40px;

  mask-image: none;
  -webkit-mask-image: none;
}

/* IMPORTANT: do not set transform on .bg-glow (JS parallax uses transform) */
.bg-glow{
  position:absolute;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
}

.bg-glow-1{
  width: 700px;
  height: 520px;
  left: -160px;
  top: -160px;
  background: radial-gradient(circle, rgba(178,32,70,0.20), transparent 60%);
}

.bg-glow-2{
  width: 680px;
  height: 520px;
  right: -220px;
  top: -120px;
  background: radial-gradient(circle, rgba(0,0,0,0.14), transparent 60%);
}

.bg-glow-3{
  width: 900px;
  height: 640px;
  left: 20%;
  bottom: -280px;
  background: radial-gradient(circle, rgba(178,32,70,0.10), transparent 65%);
}

.bg-noise{
  position:absolute;
  inset:0;
  opacity:0.06;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.bg-vignette{
  position:absolute;
  inset:-10%;
  background: radial-gradient(closest-side at 50% 18%, transparent 55%, rgba(0,0,0,0.14));
  opacity: 0.55;
}

/* LAYOUT */
.page{
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) 70px;
}

/* TOP BAR */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}

/* nav logo matches the “disc + ring” language */
.brandMark{
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;

  border-radius: 999px;
  background: #0A0A0C;
  border: 1px solid rgba(0,0,0,0.28);
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
  overflow: hidden;
}

.brandMark::before{
  content:"";
  position:absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(178,32,70,0.18);
  box-shadow: 0 0 0 6px rgba(178,32,70,0.05);
  opacity: 0.95;
}

.brand-logo{
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: 50% 50%;
  transform: none;
}

.brand-name{
  font-weight: 720;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.84);
}

/* Desktop links */
.navLinks{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
}

.navLinks a{
  font-size: 0.92rem;
  font-weight: 640;
  color: rgba(0,0,0,0.70);
  padding: 9px 10px;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}

.navLinks a:hover{
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.88);
}

.navLinks a[aria-current="page"]{
  background: rgba(178,32,70,0.08);
  color: rgba(0,0,0,0.86);
  border: 1px solid rgba(178,32,70,0.16);
}

/* Right side */
.navRight{
  display:flex;
  align-items:center;
  gap: 10px;
}

.navCta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(178,32,70,0.22);
  background: rgba(178,32,70,0.08);
  color: rgba(0,0,0,0.84);
  font-weight: 720;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.navCta:hover{
  transform: translateY(-1px);
  background: rgba(178,32,70,0.12);
  border-color: rgba(178,32,70,0.32);
}

.navToggle{
  display:none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
  color: rgba(0,0,0,0.78);
  font-weight: 700;
}

/* MOBILE DRAWER */
.drawer{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad) 18px;
  gap: 8px;
}

.drawer:not([hidden]){ display:grid; }

.drawer a{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.80);
  color: rgba(0,0,0,0.78);
  font-weight: 700;
}

.drawer a:hover{
  border-color: rgba(178,32,70,0.25);
  box-shadow: 0 0 0 4px rgba(178,32,70,0.08);
}

.drawerCta{
  background: rgba(178,32,70,0.10) !important;
  border-color: rgba(178,32,70,0.22) !important;
}

/* HERO */
.hero{ padding: 64px 0 18px; }

.heroShell{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.62));
  box-shadow: var(--shadow);
  padding: 52px 42px 34px;
  position: relative;
  overflow: hidden;
}

.heroShell::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(700px 380px at 20% 25%, rgba(178,32,70,0.16), transparent 60%),
    radial-gradient(760px 420px at 80% 40%, rgba(0,0,0,0.10), transparent 62%);
  filter: blur(26px);
  opacity: 0.85;
  pointer-events:none;
}

/* Optional: if hero logo disc exists (index old version) */
.heroBrand{
  display:flex;
  justify-content:center;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.logoRing{
  position:absolute;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  border: 1px solid rgba(178,32,70,0.22);
  box-shadow: 0 0 0 6px rgba(178,32,70,0.06);
  transform: translateY(-16px);
}

.logoDisc{
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: #0A0A0C;
  border: 1px solid rgba(0,0,0,0.28);
  box-shadow: 0 26px 80px rgba(0,0,0,0.18);
  display:grid;
  place-items:center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.logoDisc img{
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: 50% 50%;
  transform: none;
}

.heroKicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178,32,70,0.16);
  background: rgba(178,32,70,0.06);
  color: rgba(0,0,0,0.70);
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  width: fit-content;
}

.heroTitle{
  position: relative;
  z-index: 1;
  text-align:center;
  font-size: clamp(2.2rem, 4.1vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 860;
  color: rgba(0,0,0,0.88);
  margin: 10px 0 12px;
}

.heroAccent{
  background: linear-gradient(90deg, rgba(178,32,70,0.92), rgba(178,32,70,0.72));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heroLead{
  position: relative;
  z-index: 1;
  text-align:center;
  max-width: 860px;
  margin: 0 auto 18px;
  color: rgba(0,0,0,0.66);
  font-size: 1.08rem;
  line-height: 1.65;
}

.heroActions{
  position: relative;
  z-index: 1;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 760;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btnPrimary{
  background: rgba(178,32,70,0.95);
  color: #fff;
  box-shadow: 0 18px 60px rgba(178,32,70,0.22);
  border: 1px solid rgba(178,32,70,0.40);
}

.btnPrimary:hover{
  transform: translateY(-1px);
  box-shadow: 0 24px 72px rgba(178,32,70,0.28);
}

.btnGhost{
  background: rgba(255,255,255,0.70);
  color: rgba(0,0,0,0.78);
  border: 1px solid rgba(0,0,0,0.12);
}

.btnGhost:hover{
  transform: translateY(-1px);
  border-color: rgba(178,32,70,0.20);
  box-shadow: 0 0 0 6px rgba(178,32,70,0.06);
}

/* HERO METRICS (index) */
.heroMetrics{
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.metric{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.70);
  padding: 12px 14px;
}

.metricKicker{
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.46);
  margin-bottom: 6px;
}

.metricValue{
  font-size: 0.98rem;
  font-weight: 740;
  color: rgba(0,0,0,0.78);
}

/* =========================================================
   PACKAGED “MIDDLE LINKS” + BETWEEN-CONTAINER ELEMENTS
   ========================================================= */

.sectionLinkStrip{ margin: 18px 0 10px; }

.sectionLinks{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.sectionLinks a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.62);
  color: rgba(0,0,0,0.72);
  font-weight: 820;
  font-size: 0.92rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.sectionLinks a:hover{
  transform: translateY(-1px);
  border-color: rgba(178,32,70,0.22);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 0 0 6px rgba(178,32,70,0.06);
}

.sectionLinks .dot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(178,32,70,0.36);
  flex: 0 0 auto;
  opacity: 0.9;
}

.betweenHint{
  max-width: 920px;
  margin: 18px auto 0;
  padding: 0 4px;
}

.betweenHintInner{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.betweenLabel{
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.46);
}

.betweenText{
  color: rgba(0,0,0,0.62);
  font-weight: 760;
}

.betweenCta{
  display:flex;
  justify-content:center;
  margin: 22px 0 10px;
}

.betweenCtaLink{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(178,32,70,0.18);
  background: rgba(178,32,70,0.06);
  color: rgba(0,0,0,0.80);
  font-weight: 840;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.betweenCtaLink:hover{
  transform: translateY(-1px);
  border-color: rgba(178,32,70,0.28);
  box-shadow: 0 0 0 6px rgba(178,32,70,0.06);
  background: rgba(178,32,70,0.08);
}

/* =========================================================
   PLATFORM PAGE: CONCEPT BLOCKS
   ========================================================= */

.conceptBlock{
  margin-top: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.56);
  box-shadow: var(--shadow2);
  padding: 22px 22px;
}

.conceptEyebrow{
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.46);
  margin-bottom: 10px;
}

.conceptTitle{
  font-size: clamp(1.35rem, 2.0vw, 1.7rem);
  letter-spacing: -0.03em;
  font-weight: 880;
  color: rgba(0,0,0,0.88);
  margin-bottom: 8px;
}

.conceptText{
  font-size: 1.06rem;
  color: rgba(0,0,0,0.62);
  line-height: 1.65;
  font-weight: 720;
}

/* SECTIONS */
.section{ padding: 44px 0 0; }

.sectionHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  padding: 4px 0 14px;
}

.sectionHeader h2{
  font-size: clamp(1.6rem, 2.3vw, 2.0rem);
  letter-spacing: -0.03em;
  font-weight: 860;
  color: rgba(0,0,0,0.88);
}

.sectionLead{
  max-width: 720px;
  color: rgba(0,0,0,0.62);
  line-height: 1.65;
  font-size: 1.03rem;
}

/* REVEAL SYSTEM (UPDATED: no blur, avoids pixelated images) */
[data-reveal] .revealItem{
  opacity: 0;
  transform: translate(var(--tx, 0px), var(--ty, 18px));
  transition: opacity var(--reveal-ease), transform var(--reveal-ease);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}

[data-reveal].isVisible .revealItem{
  opacity: 1;
  transform: translate(0, 0);
}

/* Micro-interactions */
.card, .panel, .metric{ transform: translateZ(0); }
.card:hover{ transform: translateY(-4px); }
.btnPrimary:active, .btnGhost:active, .navCta:active{ transform: translateY(0); }

/* PANELS */
.panel{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.64));
  box-shadow: var(--shadow2);
  padding: 26px 26px;
  position: relative;
  overflow: hidden;
}

.panel p{
  color: rgba(0,0,0,0.68);
  font-size: 1.03rem;
  line-height: 1.72;
  margin-bottom: 14px;
}

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

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

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

.card{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow2);
  padding: 20px 18px 18px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(560px 280px at 20% 25%, rgba(178,32,70,0.12), transparent 60%),
    radial-gradient(560px 300px at 82% 70%, rgba(0,0,0,0.10), transparent 62%);
  filter: blur(28px);
  opacity: 0.65;
  pointer-events:none;
}

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

.card:hover{
  box-shadow: 0 22px 70px rgba(0,0,0,0.14);
  border-color: rgba(178,32,70,0.18);
}

.card h3{
  font-size: 1.15rem;
  font-weight: 860;
  letter-spacing: -0.02em;
  color: rgba(0,0,0,0.88);
}

.card p{
  color: rgba(0,0,0,0.62);
  line-height: 1.65;
  margin: 10px 0 0;
}

.cardLink{
  display:inline-flex;
  font-weight: 820;
  color: rgba(178,32,70,0.92);
  gap: 8px;
}

.cardLink:hover{ text-decoration: underline; }

/* Manager logo normalization */
.logoTile{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.logoTile img{
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* CONTACT */
.contactPanel .contactRow{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contactPanel .contactRow:last-of-type{ border-bottom: 0; }

.contactLabel{
  font-weight: 820;
  color: rgba(0,0,0,0.62);
}

.contactValue{
  font-weight: 760;
  color: rgba(0,0,0,0.78);
}

.contactValue a{ color: rgba(178,32,70,0.92); }

.contactNote{
  margin-top: 14px;
  font-size: 0.96rem;
  color: rgba(0,0,0,0.56);
  line-height: 1.6;
}

/* FOOTER */
.footer{
  position: relative;
  z-index: 1;
  padding: 34px 0 50px;
}

.footerInner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.footerLine{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.10), transparent);
  margin-bottom: 18px;
}

.fineprint{
  color: rgba(0,0,0,0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .navLinks{ display:none; }
  .navToggle{ display:inline-flex; }

  .heroMetrics{ grid-template-columns: 1fr; }
  .cards, .cardsWide{ grid-template-columns: 1fr; }
  .sectionHeader{ flex-direction: column; align-items:flex-start; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal] .revealItem{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .bg-glow{ will-change: auto; }
}

/* =========================================================
   ADDITIONS FOR LOGIN PAGE INPUTS (SAFE, MINIMAL)
   ========================================================= */

.field{
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.72);
  color: rgba(0,0,0,0.80);
  font-weight: 760;
  font-size: 0.96rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.field::placeholder{
  color: rgba(0,0,0,0.40);
  font-weight: 700;
}

.field:focus{
  border-color: rgba(178,32,70,0.28);
  box-shadow: 0 0 0 6px rgba(178,32,70,0.08);
  background: rgba(255,255,255,0.82);
}

.micro{
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.56);
}

/* =========================================================
  INTRO SPLASH (INDEX ONLY)
  Black screen with centred logo, fades out to reveal page
  ========================================================= */

.introSplash{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1400ms cubic-bezier(.16, 1, .3, 1), visibility 1400ms cubic-bezier(.16, 1, .3, 1);
}

.introSplashInner{
  display: grid;
  place-items: center;
  gap: 10px;
  transform: translateY(0);
  transition: transform 1400ms cubic-bezier(.16, 1, .3, 1), opacity 1400ms cubic-bezier(.16, 1, .3, 1);
}

.introSplashLogo{
  width: min(220px, 58vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 50px rgba(0,0,0,0.55));
  opacity: 0.98;
}

.introSplashTag{
  color: rgba(255,255,255,0.78);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* When hidden */
.introSplash.isHidden{
  opacity: 0;
  visibility: hidden;
}

.introSplash.isHidden .introSplashInner{
  transform: translateY(10px);
  opacity: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .introSplash,
  .introSplashInner{
    transition: none !important;
  }
}

/* =========================================================
   PROFILE ROW (Leadership cards)
   ========================================================= */

.profileRow{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:10px;
}

.profileImg{
  width:64px;
  height:64px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.80);
  flex: 0 0 64px;
}

.profileImg img{
  width:100%;
  height:100%;
  object-fit: cover;

  /* UPDATED: keep headshots crisp during/after animations */
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: auto;
}

.profileText h3{ margin:0; }

.profileText .micro{ margin-top:6px; }


/* =========================================================
   TEMP SITE ACCESS GATE (remove on public launch)
   ========================================================= */
.siteGate{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 8, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.siteGate[hidden]{ display: none !important; }
.siteGateCard{
  width: min(560px, 100%);
  border-radius: var(--radius-xl, 28px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow, 0 18px 60px rgba(0,0,0,0.45));
  padding: 22px;
}
.siteGateTitle{
  margin: 2px 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.siteGateLead{
  margin: 0 0 14px;
  opacity: 0.9;
}
.siteGateRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.siteGateError{
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  background: rgba(178, 32, 70, 0.18);
  border: 1px solid rgba(178, 32, 70, 0.35);
  padding: 10px 12px;
  border-radius: 12px;
}

/* =========================================================
MOBILE POLISH – DESIGNER PLATFORMS
Safe additive pass
========================================================= */

@media (max-width: 900px) {

/* --- General spacing --- */
.page {
  padding-left: 16px;
  padding-right: 16px;
}

.section,
.hero,
.conceptBlock {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* --- Top bar --- */
.topbar {
  padding-top: env(safe-area-inset-top);
}

.nav {
  min-height: 64px;
  align-items: center;
}

.brand-name {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.navLinks {
  display: none;
}

.navToggle {
  display: inline-flex;
  padding: 10px 14px;
  font-size: 13px;
}

.navCta {
  display: none;
}

/* --- Mobile drawer --- */
.drawer {
  padding: 24px 20px;
  gap: 18px;
}

.drawer a {
  font-size: 16px;
  padding: 10px 0;
}

/* --- Hero --- */
.heroTitle {
  font-size: clamp(28px, 8vw, 36px);
  line-height: 1.15;
}

.heroLead {
  font-size: 15px;
  line-height: 1.55;
}

.heroActions {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.heroActions .btn {
  width: 100%;
  text-align: center;
}

/* --- Cards --- */
.cards,
.cardsWide {
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  padding: 18px;
}

/* --- Profile rows --- */
.profileRow {
  gap: 14px;
}

.profileImg img {
  width: 56px;
  height: 56px;
}

/* --- Between hints --- */
.betweenHintInner {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* --- Reduce motion slightly --- */
.revealItem {
  --tx: 0px;
  --ty: 12px;
}
}
  
/* Prevent long emails/URLs from overflowing on mobile (and desktop) */
a, p, li, .micro, .fineprint, .panel, .card, .betweenText {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Extra safety for mailto links specifically */
a[href^="mailto:"] {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Ensure consistent sentence case for Client login across nav + drawer */
.navCta,
.drawerCta {
  text-transform: none;
  letter-spacing: normal;
}