/* ============================================================
   YNC Global Ltd — Premium Glassmorphism Design System
   ============================================================ */

:root {
  --navy-950: #060d1a;
  --navy-900: #0a1728;
  --navy-800: #10233d;
  --ink: #14243a;
  --slate: #566579;
  --slate-2: #8a97a8;
  --line: #e6eaf1;
  --paper: #eef1f7;
  --paper-2: #f7f9fc;
  --white: #ffffff;
  --gold: #d9a441;
  --gold-2: #f0c56b;

  --glass-bg: rgba(255, 255, 255, 0.14);
  --glass-brd: rgba(255, 255, 255, 0.28);
  --glass-bg-solid: rgba(255, 255, 255, 0.9);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1100px 600px at 85% -5%, #dfe6f2 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 20%, #eae3f1 0%, transparent 55%),
    linear-gradient(180deg, #eef1f7 0%, #f3f5fa 100%);
  background-attachment: fixed;
}

h1, h2, h3 { font-family: var(--font); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 100px 0; }
.center { text-align: center; }

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

/* ---------- Glass primitive ---------- */
.glass-card {
  background: var(--glass-bg-solid);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -34px rgba(16, 35, 61, 0.45), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

/* ---------- Buttons ---------- */
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  font-family: var(--font); font-weight: 600; font-size: 14.5px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.pill-btn .arrow { transition: transform .3s var(--ease); }
.pill-btn:hover { background: #fff; color: var(--navy-900); transform: translateY(-2px); }
.pill-btn:hover .arrow { transform: translate(2px,-2px); }
.pill-btn.solid { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.pill-btn.solid:hover { background: var(--gold-2); }

.round-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: #fff; font-size: 18px; flex: none;
  border: none; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.round-btn:hover { transform: translateY(-3px) rotate(8deg); background: var(--gold); color: var(--navy-950); }
.round-btn.ghost { background: rgba(20,36,58,0.08); color: var(--navy-900); }
.round-btn.ghost:hover { background: var(--gold); color: var(--navy-950); }

/* ---------- Brand lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand-mark {
  font-family: var(--font); font-weight: 700; font-size: 15px; letter-spacing: .04em;
  background: var(--gold); color: var(--navy-950);
  padding: 6px 9px; border-radius: 9px;
}
.brand-word { display: inline-flex; align-items: baseline; gap: 5px; font-family: var(--font); font-weight: 600; letter-spacing: .2em; font-size: 13.5px; color: #fff; }
.brand-sub { color: var(--gold-2); font-size: 10px; letter-spacing: .12em; }

/* ============================================================
   HERO STAGE
   ============================================================ */
.stage { padding: 20px 20px 0; }
.hero-card {
  position: relative;
  min-height: min(88vh, 820px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(6,13,26,0.7);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  z-index: -2;
}
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,13,26,0.55) 0%, rgba(6,13,26,0.12) 32%, rgba(6,13,26,0.15) 55%, rgba(6,13,26,0.78) 100%),
    radial-gradient(70% 60% at 20% 40%, rgba(6,13,26,0.5), transparent 70%);
}

/* top nav */
.topbar {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  margin: 18px; padding: 12px 14px 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.topnav { display: flex; gap: 30px; }
.topnav a { color: rgba(255,255,255,0.82); font-size: 14.5px; font-weight: 500; position: relative; transition: color .25s var(--ease); }
.topnav a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--gold-2); transition: width .3s var(--ease); }
.topnav a:hover { color:#fff; }
.topnav a:hover::after { width:100%; }

.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span { width:22px; height:2px; background:#fff; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* left rail */
.rail {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 4;
  display: flex; flex-direction: column; gap: 10px;
  padding: 12px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
}
.rail-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; border: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.rail-icon svg { width: 19px; height: 19px; fill: none; stroke: rgba(255,255,255,0.85); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rail-icon.active { background: #fff; }
.rail-icon.active svg { stroke: var(--navy-900); }
.rail-icon:hover { background: rgba(255,255,255,0.25); transform: translateX(2px); }
.rail-divider { height:1px; width:60%; margin:4px auto; background:rgba(255,255,255,0.25); }

/* hero content */
.hero-content { position: relative; z-index: 3; padding: 40px clamp(30px, 8vw, 120px) 0; max-width: 900px; }
.hero-eyebrow { color: var(--gold-2); text-transform: uppercase; letter-spacing: .28em; font-size: 12px; font-weight: 600; margin-bottom: 14px; }
.hero-title { color: #fff; font-size: clamp(3.4rem, 11vw, 8.5rem); font-weight: 600; letter-spacing: -0.04em; text-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.hero-title .thin { font-weight: 300; color: rgba(255,255,255,0.92); }
.hero-lede { color: rgba(255,255,255,0.86); max-width: 430px; margin-top: 22px; font-size: 15.5px; line-height: 1.7; }
.hero-lede strong { color: #fff; font-weight: 600; }

/* floating cards */
.hero-cards {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 20px; align-items: end;
  padding: 46px clamp(18px,4vw,40px) 30px; margin-top: auto;
}
.hero-card { display: flex; flex-direction: column; }
.hero-content { flex: 1 0 auto; }

.card-intro { padding: 26px; }
.card-intro h3 { font-size: 1.35rem; color: var(--navy-900); margin-bottom: 10px; }
.card-intro p { color: var(--slate); font-size: 14px; line-height: 1.6; }
.intro-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.intro-stat .big { font-family: var(--font); font-size: 2.3rem; font-weight: 700; color: var(--navy-900); line-height: 1; display:block; }
.intro-stat .lbl { font-size: 12.5px; color: var(--slate-2); }

.card-feature { padding: 24px 26px; }
.feature-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.feature-head h3 { font-size: 1.3rem; color: var(--navy-900); }
.feature-loc { font-size: 12.5px; color: var(--slate-2); margin-top: 4px; }
.feature-loc .pin { color: var(--gold); }
.feature-desc { color: var(--slate); font-size: 13.5px; line-height: 1.6; margin: 14px 0 16px; }
.feature-specs { display: flex; flex-wrap: wrap; gap: 16px 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.feature-specs span { font-size: 13px; color: var(--ink); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.feature-specs i { color: var(--gold); font-style: normal; font-size: 15px; }
.feature-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.logo-orb { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(150deg, var(--navy-800), var(--navy-950)); color: #fff; font-family: var(--font); font-weight: 700; font-size: 13px; letter-spacing: .04em; display: grid; place-items: center; box-shadow: 0 10px 24px -10px rgba(10,23,40,0.7); }
.feature-actions { display: flex; gap: 8px; }
.feature-actions button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 14px; font-size: 12.5px; color: var(--slate); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: border-color .25s var(--ease), color .25s var(--ease); }
.feature-actions button b { color: var(--ink); font-weight: 600; }
.feature-actions button:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-label { text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 14px; font-family: var(--font-body); }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--navy-900); }
.section-head.center { max-width: 760px; margin: 0 auto 56px; }
.section-intro { color: var(--slate); margin-top: 18px; font-size: 1.05rem; }
.section-head.light .section-title, .section-head.light .section-intro { color: #fff; }
.section-head.light .section-label { color: var(--gold-2); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { padding-top: 90px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pill-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg); padding: 40px 34px;
  box-shadow: 0 24px 50px -38px rgba(16,35,61,0.4);
  backdrop-filter: blur(16px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pill-card:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -40px rgba(16,35,61,0.55); }
.pill-num { font-family: var(--font); color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: .1em; }
.pill-card h3 { font-size: 1.5rem; color: var(--navy-900); margin: 12px 0 12px; }
.pill-card p { color: var(--slate); font-size: 15px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: 0 40px 70px -44px rgba(16,35,61,0.6); }
.about-media-badge { position: absolute; right: -18px; bottom: 34px; padding: 20px 26px; text-align: center; }
.about-media-badge .big { font-family: var(--font); font-size: 2.4rem; font-weight: 700; color: var(--navy-900); line-height: 1; display:block; }
.about-media-badge .lbl { font-size: 12.5px; color: var(--slate); }
.about-copy .section-title { margin-bottom: 22px; }
.about-copy p { color: var(--slate); margin-bottom: 16px; }
.about-values { list-style: none; margin-top: 24px; display: grid; gap: 2px; }
.about-values li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.about-values strong { font-family: var(--font); font-weight: 600; font-size: 1.1rem; color: var(--navy-800); }
.about-values span { color: var(--slate); font-size: 14px; }

/* ============================================================
   BRAND
   ============================================================ */
.brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.brand-card { padding: 38px 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.brand-card:hover { transform: translateY(-8px); }
.brand-ico { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(150deg, rgba(217,164,65,0.18), rgba(217,164,65,0.05)); color: var(--gold); font-size: 22px; margin-bottom: 20px; }
.brand-card h3 { font-size: 1.3rem; color: var(--navy-900); margin-bottom: 10px; }
.brand-card p { color: var(--slate); font-size: 14.5px; }

/* ============================================================
   CONCERNS
   ============================================================ */
.concerns { position: relative; overflow: hidden; border-radius: var(--radius-xl); margin: 0 20px; padding: 110px 0; }
.concerns-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; }
.concerns::before { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(6,13,26,0.82), rgba(6,13,26,0.9)); }
.concerns-inner { position: relative; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.stat { padding: 40px 30px; text-align: center; }
.stat-num { display: block; font-family: var(--font); font-size: clamp(2.6rem,5vw,3.6rem); font-weight: 700; color: var(--navy-900); line-height: 1; }
.stat-label { display: block; margin-top: 10px; color: var(--slate); font-size: 14px; }

/* ============================================================
   CHAIRMAN
   ============================================================ */
.chairman-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.chairman-media img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: 0 40px 70px -44px rgba(16,35,61,0.6); }
.chairman-card { padding: 44px 46px; }
.chairman-card blockquote p { font-family: var(--font); font-weight: 300; font-size: clamp(1.05rem,1.7vw,1.32rem); line-height: 1.55; color: var(--navy-800); margin-bottom: 18px; }
.chairman-card cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--gold); letter-spacing: .04em; }

/* ============================================================
   PRESENCE
   ============================================================ */
.presence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.presence-copy .section-title { margin-bottom: 18px; }
.presence-copy p { color: var(--slate); }
.regions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.regions span { padding: 9px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--navy-800); background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.9); }
.presence-panel { position: relative; aspect-ratio: 1/0.8; overflow: hidden; background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); }
.globe-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at center, #000 42%, transparent 78%); }
.presence-panel .dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(217,164,65,0.2); animation: pulse 2.6s var(--ease) infinite; }
.dot-1 { top:30%; left:26%; } .dot-2 { top:54%; left:58%; animation-delay:.6s; }
.dot-3 { top:40%; left:74%; animation-delay:1.1s; } .dot-4 { top:66%; left:36%; animation-delay:1.7s; }
.ring { position:absolute; top:50%; left:50%; width:60%; aspect-ratio:1; transform:translate(-50%,-50%); border:1px dashed rgba(217,164,65,0.35); border-radius:50%; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:.65;} }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients .section-title { max-width: 800px; margin: 0 auto; }

/* ============================================================
   CTA
   ============================================================ */
.cta-card { text-align: center; padding: 66px 40px; background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); border: 1px solid rgba(255,255,255,0.08); }
.cta-card h2 { color: #fff; font-size: clamp(1.8rem,3.6vw,2.7rem); margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,0.7); margin-bottom: 30px; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 62px 0 28px; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 380px; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; color: rgba(255,255,255,0.55); }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: rgba(255,255,255,0.72); font-size: 14.5px; transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .about-grid, .chairman-grid, .presence-grid { grid-template-columns: 1fr; gap: 40px; }
  .chairman-media { order: 2; }
  .pillars-grid, .brand-grid, .stats { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .stage { padding: 12px 12px 0; }
  .section { padding: 72px 0; }
  .rail { display: none; }
  .hero-content { padding: 30px 24px 0; }
  .hero-cards { padding: 30px 14px 18px; }
  .topnav {
    position: absolute; top: 74px; right: 8px;
    flex-direction: column; gap: 14px; align-items: flex-start;
    padding: 22px 24px; border-radius: 22px;
    background: rgba(10,23,40,0.92); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14);
    transform: translateY(-12px) scale(.96); opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .topnav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .pill-btn { display: none; }
  .about-media img, .chairman-media img { height: 360px; }
  .about-media-badge { right: 12px; }
  .concerns { margin: 0 12px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .presence-panel .dot { animation: none; }
  html { scroll-behavior: auto; }
}


/* ============================================================
   INLINE SVG ICONS
   ============================================================ */
.ic { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: -2px; }
.ic-lg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.round-btn .ic { width: 18px; height: 18px; stroke-width: 2; }
.pill-btn .ic, .arrow .ic { width: 16px; height: 16px; stroke-width: 2; }
.feature-specs .ic { stroke: var(--gold); width: 16px; height: 16px; }
.feature-loc .ic { stroke: var(--gold); width: 13px; height: 13px; vertical-align: -1px; }
.feature-actions .ic { width: 14px; height: 14px; }


/* ============================================================
   MULTI-PAGE ADDITIONS — v3
   ============================================================ */

/* ---------- Brand logo (header) ---------- */
.brand { gap: 11px; }
/* white logo artwork — shows as-is on dark headers */
.brand-logo { display: block; height: 50px; width: auto; flex: none; }
/* invert to near-black on the light inner-page navbar so it stays visible */
.topbar.light .brand-logo { filter: invert(1) brightness(0.18); }
.footer-logo { display: block; height: 58px; width: auto; margin-bottom: 4px; }
.topbar .brand { color: #fff; }
.topbar.light .brand { color: var(--navy-900); }
.topbar.light .brand-word { color: var(--navy-900); }

/* ---------- Standalone site nav (inner pages) ---------- */
.site-nav { position: sticky; top: 0; z-index: 60; padding: 16px 20px 0; }
.site-nav .topbar { margin: 0 auto; max-width: var(--maxw); }
.topbar.light {
  background: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 16px 40px -30px rgba(16,35,61,0.5);
}
.topbar.light .topnav a { color: var(--slate); }
.topbar.light .topnav a:hover { color: var(--navy-900); }
.topbar.light .topnav a.active { color: var(--navy-900); }
.topbar.light .topnav a.active::after { width: 100%; }
.topbar.light .nav-toggle span { background: var(--navy-900); }
.pill-btn.dark { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.pill-btn.dark:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.topnav a.active { color: #fff; }

/* ---------- HERO SEARCH ---------- */
.hero-search {
  position: relative; z-index: 3;
  margin: 26px clamp(30px,8vw,120px) 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: 1.5fr 1.15fr 1.1fr auto;
  gap: 6px; padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.search-field { display: flex; flex-direction: column; gap: 2px; padding: 8px 14px; border-radius: 14px; transition: background .25s var(--ease); }
.search-field:hover { background: rgba(255,255,255,0.12); }
.search-field label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 600; }
.search-field input, .search-field select {
  background: transparent; border: none; color: #fff; font-family: var(--font); font-size: 14.5px; font-weight: 500;
  outline: none; width: 100%; padding: 2px 0; cursor: pointer;
}
.search-field input { cursor: text; }
.search-field input::placeholder { color: rgba(255,255,255,0.55); font-weight: 400; }
.search-field select option { color: var(--navy-900); }
.search-submit {
  align-self: stretch; border: none; cursor: pointer; border-radius: 14px;
  background: var(--gold); color: var(--navy-950);
  padding: 0 22px; font-family: var(--font); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.search-submit:hover { background: var(--gold-2); transform: translateY(-1px); }
.search-submit .ic { width: 17px; height: 17px; stroke-width: 2.2; }

/* ---------- PAGE HEAD (inner pages) ---------- */
.page-head { position: relative; overflow: hidden; border-radius: var(--radius-xl); margin: 16px 20px 0; padding: 88px clamp(28px,6vw,80px); color: #fff; }
.page-head-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transform: scale(1.05); }
.page-head::before { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(120deg, rgba(6,13,26,0.86), rgba(6,13,26,0.55)); }
.page-head .crumb { font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.page-head .crumb a:hover { color: var(--gold-2); }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.03em; }
.page-head p { max-width: 620px; margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 1.05rem; }

/* ============================================================
   BRAND WORDMARKS (in-theme recreations)
   ============================================================ */
.wordmark { display: inline-flex; align-items: center; font-family: var(--font); font-weight: 600; letter-spacing: .12em; }
.wm-cladova { font-size: 1.7rem; color: var(--navy-900); letter-spacing: .16em; }
.wm-cladova .dot-c { color: var(--gold); }
.wm-cladova .reg { font-size: .7rem; vertical-align: super; color: var(--slate-2); letter-spacing: 0; }
.wm-florcov { font-size: 1.7rem; letter-spacing: .14em; }
.wm-florcov .flor { color: var(--navy-900); }
.wm-florcov .cov { color: #3b7bb5; }
.wm-florcov .reg { font-size: .7rem; vertical-align: super; color: var(--slate-2); letter-spacing: 0; }

/* ---------- BRANDS PAGE ---------- */
.brands-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.brandx-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.brandx-logo { padding: 54px 30px; display: grid; place-items: center; background: linear-gradient(160deg, #fff, #f2f5fa); border-bottom: 1px solid var(--line); min-height: 190px; }
.brandx-body { padding: 30px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.brandx-body h3 { font-size: 1.5rem; color: var(--navy-900); margin-bottom: 6px; }
.brandx-tag { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.brandx-body p { color: var(--slate); font-size: 15px; margin-bottom: 22px; flex: 1; }
.brandx-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-line { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-family: var(--font); font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid transparent; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.btn-line.solid { background: var(--navy-900); color: #fff; }
.btn-line.solid:hover { background: var(--gold); color: var(--navy-950); transform: translateY(-2px); }
.btn-line.ghost { border-color: var(--line); color: var(--navy-900); background: #fff; }
.btn-line.ghost:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-line .ic { width: 16px; height: 16px; }

/* ---------- IN-SITE DRAWER (iframe sidebar) ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(6,13,26,0.55); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); z-index: 200; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; z-index: 210;
  width: min(560px, 94vw);
  background: var(--paper-2);
  box-shadow: -30px 0 80px -30px rgba(6,13,26,0.6);
  transform: translateX(100%); transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.drawer-title { display: flex; align-items: center; gap: 12px; min-width: 0; }
.drawer-title .badge { width: 40px; height: 40px; border-radius: 11px; background: var(--navy-900); color: #fff; display: grid; place-items: center; font-family: var(--font); font-weight: 700; font-size: 13px; flex: none; }
.drawer-title .meta { min-width: 0; }
.drawer-title .meta b { display: block; font-family: var(--font); font-size: 15px; color: var(--navy-900); }
.drawer-title .meta span { font-size: 12.5px; color: var(--slate-2); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drawer-tools { display: flex; align-items: center; gap: 8px; flex: none; }
.drawer-tools a, .drawer-tools button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--slate); display: grid; place-items: center; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.drawer-tools a:hover, .drawer-tools button:hover { background: var(--navy-900); color: #fff; }
.drawer-tools .ic { width: 17px; height: 17px; }
.drawer-frame-wrap { position: relative; flex: 1; background: #fff; }
.drawer-frame-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.drawer-loader { position: absolute; inset: 0; display: grid; place-items: center; background: var(--paper-2); transition: opacity .4s var(--ease); }
.drawer-loader.hide { opacity: 0; pointer-events: none; }
.spinner { width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--gold); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.drawer-fallback { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 40px; }
.drawer-fallback.show { display: flex; }
.drawer-fallback p { color: var(--slate); max-width: 320px; }

/* ============================================================
   CONCERNS GRID (8 sister concerns)
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-search { position: relative; flex: 1; min-width: 240px; max-width: 380px; }
.filter-search input { width: 100%; padding: 13px 18px 13px 44px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-family: var(--font-body); font-size: 14.5px; color: var(--ink); outline: none; transition: border-color .25s var(--ease); }
.filter-search input:focus { border-color: var(--gold); }
.filter-search .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; stroke: var(--slate-2); }
.chip { padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--slate); font-family: var(--font); font-weight: 500; font-size: 13.5px; cursor: pointer; transition: all .25s var(--ease); }
.chip:hover { border-color: var(--navy-900); color: var(--navy-900); }
.chip.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.concern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.concern-card { padding: 24px 24px 22px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s var(--ease); }
.concern-card.hide { display: none; }
.concern-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -38px rgba(16,35,61,0.5); }
.concern-emblem { width: 100%; height: 116px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 16px; background: #fff; border: 1px solid var(--line); overflow: hidden; padding: 14px; }
.concern-emblem img { max-height: 84px; max-width: 88%; width: auto; object-fit: contain; }
.concern-card h3 { font-size: 1.14rem; color: var(--navy-900); margin-bottom: 4px; }
.concern-sector { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.concern-card p { color: var(--slate); font-size: 13.5px; line-height: 1.6; flex: 1 1 auto; margin-bottom: 16px; }
.concern-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.concern-link { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--navy-900); transition: color .25s var(--ease); }
.concern-link .ic { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.concern-link:hover { color: var(--gold); }
.concern-link:hover .ic { transform: translate(2px,-2px); }
.concern-visit { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--slate); display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); }
.concern-visit .ic { width: 15px; height: 15px; }
.concern-visit:hover { background: var(--navy-900); color: #fff; }
.concern-tagchip { font-size: 11.5px; letter-spacing: .06em; color: var(--slate-2); font-weight: 500; }
.no-results { text-align: center; color: var(--slate); padding: 40px; grid-column: 1/-1; display: none; }
.no-results.show { display: block; }

/* concern emblem palette */
.emblem-ring { fill: none; stroke: var(--gold); stroke-width: 1.4; }
.emblem-fill { fill: var(--navy-900); }
.emblem-stroke { fill: none; stroke: var(--navy-900); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.emblem-gold { fill: var(--gold); }
.emblem-wm { font-family: var(--font); font-weight: 600; fill: var(--navy-900); letter-spacing: .06em; }

/* ============================================================
   CLIENTS WALL
   ============================================================ */
.clients-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 48px; }
.client-logo { aspect-ratio: 16/9; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; padding: 22px; box-shadow: 0 18px 44px -30px rgba(16,35,61,0.5); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.client-logo:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -30px rgba(16,35,61,0.55); border-color: var(--gold); }
.client-logo img { max-height: 56px; max-width: 84%; width: auto; object-fit: contain; opacity: .92; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.client-logo:hover img { opacity: 1; transform: scale(1.04); }
.client-name { font-family: var(--font); font-weight: 600; font-size: 18px; letter-spacing: .04em; color: var(--navy-800); text-align: center; transition: color .3s var(--ease); }
.client-logo:hover .client-name { color: var(--gold); }

/* ============================================================
   3D GLOBE
   ============================================================ */
.globe-section { position: relative; overflow: hidden; border-radius: var(--radius-xl); margin: 0 20px; background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); color: #fff; padding: 80px 0 40px; }
.globe-head { text-align: center; max-width: 700px; margin: 0 auto 10px; padding: 0 20px; }
.globe-head .section-label { color: var(--gold-2); }
.globe-head h2 { color: #fff; font-size: clamp(1.9rem,4vw,3rem); }
.globe-head p { color: rgba(255,255,255,0.72); margin-top: 14px; }
.globe-wrap { position: relative; width: 100%; height: 560px; display: grid; place-items: center; }
#globe { width: 100%; height: 100%; }
.globe-wrap canvas { outline: none; }
.flag-marker { width: 34px; height: 34px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid rgba(255,255,255,0.9); box-shadow: 0 4px 14px rgba(0,0,0,0.4); cursor: pointer; transition: transform .2s var(--ease); }
.flag-marker:hover { transform: scale(1.25); z-index: 5; }
.flag-tip { position: absolute; transform: translate(-50%,-140%); background: #fff; color: var(--navy-900); font-family: var(--font); font-weight: 600; font-size: 12px; padding: 5px 11px; border-radius: 999px; white-space: nowrap; pointer-events: none; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4); opacity: 0; transition: opacity .2s var(--ease); }
.globe-fallback { display: none; padding: 0 20px 30px; }
.globe-fallback.show { display: block; }
.flag-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 20px auto 0; }
.flag-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 7px 14px 7px 8px; font-size: 13px; color: rgba(255,255,255,0.9); }
.flag-chip img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; }
.globe-legend { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; color: rgba(255,255,255,0.6); font-size: 13px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-info .info-item:first-of-type { border-top: none; }
.contact-info .info-ic { width: 46px; height: 46px; border-radius: 13px; background: rgba(217,164,65,0.14); color: var(--gold); display: grid; place-items: center; flex: none; }
.contact-info .info-ic .ic { width: 20px; height: 20px; }
.contact-info h4 { font-family: var(--font); font-size: 1rem; color: var(--navy-900); margin-bottom: 3px; }
.contact-info p, .contact-info a { color: var(--slate); font-size: 14.5px; }
.contact-info a:hover { color: var(--gold); }
.contact-form { padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; font-family: var(--font); }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border-radius: 13px; border: 1px solid var(--line); background: #fbfcfe; font-family: var(--font-body); font-size: 14.5px; color: var(--ink); outline: none; transition: border-color .25s var(--ease), background .25s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { margin-top: 8px; font-size: 13px; }
.form-note.ok { color: #2e7d55; }

/* ============================================================
   RESPONSIVE (v3 additions)
   ============================================================ */
@media (max-width: 1000px) {
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-wall { grid-template-columns: repeat(3, 1fr); }
  .brands-page-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .search-submit { grid-column: 1/-1; padding: 14px; }
}
@media (max-width: 620px) {
  .concern-grid { grid-template-columns: 1fr; }
  .clients-wall { grid-template-columns: repeat(2, 1fr); }
  .hero-search { grid-template-columns: 1fr; margin-top: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .globe-wrap { height: 420px; }
  .page-head { margin: 12px; padding: 60px 24px; }
  .globe-section { margin: 0 12px; }
}


/* real brand logos on brand cards */
.brandx-logo-img { max-height: 62px; max-width: 74%; width: auto; object-fit: contain; }


/* merged What-We-Do + globe section spacing */
.globe-section .globe-head { margin-bottom: 6px; }
.globe-section .stats { margin: 42px 0 4px; }
@media (max-width: 620px){ .globe-section .stats { margin: 30px 0 0; } }


/* ============================================================
   STICKY HEADER (home) — appears on scroll
   ============================================================ */
.sticky-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; padding: 12px 20px; transform: translateY(-130%); transition: transform .45s var(--ease); }
.sticky-nav.show { transform: none; }
.sticky-nav .topbar { margin: 0 auto; max-width: var(--maxw); box-shadow: 0 16px 40px -26px rgba(16,35,61,0.55); }

/* ============================================================
   ATLAS — YNC CHATBOT
   ============================================================ */
.chat-launch {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 20px 10px 12px; border: none; cursor: pointer;
  border-radius: 999px; background: var(--navy-900); color: #fff;
  box-shadow: 0 18px 40px -14px rgba(6,13,26,0.7);
  font-family: var(--font); font-weight: 600; font-size: 14.5px;
  transition: transform .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
}
.chat-launch:hover { transform: translateY(-3px); background: var(--navy-950); }
.chat-launch.hide { opacity: 0; visibility: hidden; transform: scale(.85); }
.chat-launch .cl-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold));
  display: grid; place-items: center; position: relative;
}
.chat-launch .cl-avatar svg { width: 19px; height: 19px; stroke: var(--navy-950); fill: none; stroke-width: 1.8; }
.chat-launch .cl-avatar::after { content:""; position:absolute; right:-1px; bottom:-1px; width:9px; height:9px; border-radius:50%; background:#3ec06a; border:2px solid var(--navy-900); }

.chat-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 160;
  width: min(384px, 92vw); height: min(566px, 82vh);
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 24px; background: var(--paper-2);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 40px 90px -30px rgba(6,13,26,0.6);
  transform: translateY(24px) scale(.96); opacity: 0; visibility: hidden;
  transition: transform .38s var(--ease), opacity .38s var(--ease), visibility .38s var(--ease);
}
.chat-panel.open { transform: none; opacity: 1; visibility: visible; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 16px; background: linear-gradient(150deg, var(--navy-800), var(--navy-950)); color: #fff; }
.chat-head .ch-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold)); display: grid; place-items: center; }
.chat-head .ch-avatar svg { width: 23px; height: 23px; stroke: var(--navy-950); fill: none; stroke-width: 1.7; }
.chat-head .ch-meta { flex: 1; min-width: 0; }
.chat-head .ch-meta b { font-family: var(--font); font-size: 15px; display: block; }
.chat-head .ch-meta span { font-size: 12px; color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 6px; }
.chat-head .ch-meta span::before { content:""; width:7px; height:7px; border-radius:50%; background:#3ec06a; display:inline-block; }
.chat-close { width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,0.14); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s var(--ease); }
.chat-close:hover { background: rgba(255,255,255,0.28); }
.chat-close svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.chat-body { flex: 1; overflow-y: auto; padding: 18px 16px 6px; display: flex; flex-direction: column; gap: 11px; scroll-behavior: smooth; }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 15px; font-size: 14px; line-height: 1.5; animation: msgIn .35s var(--ease); }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.msg.bot { background: #fff; border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 5px; }
.msg.user { background: var(--navy-900); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.msg-action { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; padding: 8px 14px; border-radius: 999px; background: var(--gold); color: var(--navy-950); font-family: var(--font); font-weight: 600; font-size: 12.5px; transition: background .25s var(--ease); }
.msg-action:hover { background: var(--gold-2); }
.msg-action svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.msg.typing { display: inline-flex; gap: 4px; align-items: center; }
.msg.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-2); animation: blink 1.2s infinite; }
.msg.typing span:nth-child(2){ animation-delay:.2s; } .msg.typing span:nth-child(3){ animation-delay:.4s; }
@keyframes blink { 0%,60%,100%{ opacity:.25; transform: translateY(0);} 30%{ opacity:1; transform: translateY(-3px);} }

.chat-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 6px 16px 10px; }
.chat-chip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 13px; font-size: 12.5px; color: var(--navy-800); cursor: pointer; font-family: var(--font-body); transition: border-color .2s var(--ease), color .2s var(--ease); }
.chat-chip:hover { border-color: var(--gold); color: var(--gold); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; outline: none; font-family: var(--font-body); font-size: 14px; color: var(--ink); transition: border-color .2s var(--ease); }
.chat-input input:focus { border-color: var(--gold); }
.chat-send { width: 44px; height: 44px; flex: none; border: none; border-radius: 50%; background: var(--navy-900); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s var(--ease); }
.chat-send:hover { background: var(--gold); color: var(--navy-950); }
.chat-send svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 620px){
  .chat-panel { right: 10px; left: 10px; width: auto; bottom: 10px; height: 78vh; }
  .chat-launch { right: 14px; bottom: 14px; }
}


/* ============================================================
   HOME — "Our Concerns" teaser tiles
   ============================================================ */
.concern-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.concern-mini { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; padding: 20px 16px; border-radius: 18px; background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.85); box-shadow: 0 20px 44px -34px rgba(16,35,61,0.4); backdrop-filter: blur(12px); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.concern-mini:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 30px 56px -30px rgba(16,35,61,0.5); }
.concern-mini-logo { width: 100%; height: 78px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; padding: 10px; margin-bottom: 10px; overflow: hidden; }
.concern-mini-logo img { max-height: 56px; max-width: 88%; width: auto; object-fit: contain; }
.concern-mini-name { font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--navy-900); line-height: 1.25; }
.concern-mini-sector { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
@media (max-width: 1000px){ .concern-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .concern-mini-grid { grid-template-columns: 1fr; } }

/* Atlas avatar uses the YNC logo (dark on the gold avatar) */
.cl-avatar .atlas-logo, .ch-avatar .atlas-logo { width: 84%; height: 84%; object-fit: contain; filter: invert(1) brightness(0.16); }


/* ============================================================
   CONCERN DETAIL PAGE
   ============================================================ */
.concern-detail-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.cd-logo { padding: 48px; display: grid; place-items: center; min-height: 260px; background: #fff; position: sticky; top: 96px; }
.cd-logo img { max-width: 78%; max-height: 220px; width: auto; object-fit: contain; }
.cd-body .brandx-tag { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.cd-body .section-title { margin-bottom: 18px; }
.cd-desc { color: var(--slate); font-size: 1.06rem; line-height: 1.75; margin-bottom: 26px; }
.cd-regions { margin-bottom: 30px; }
.cd-regions-label { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; margin-bottom: 12px; }
.cd-body .brandx-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px){
  .concern-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .cd-logo { position: static; min-height: 200px; padding: 40px; }
}
