:root{
  --bg:#f7f8fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;

  --blue:#2563eb;
  --green:#16a34a;
  --sun:#f59e0b;

  --r:16px;
  --r2:22px;
  --shadow: 0 12px 30px rgba(15,23,42,0.06);
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.link{ text-decoration: underline; text-underline-offset: 3px; }
.muted{ color: var(--muted); }
.fine{ font-size: 12px; line-height: 1.6; margin: 8px 0 0; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:30;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
}
.brand__mark{
  width: 12px; height: 12px; border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--sun), var(--green));
}
.brand__name{ font-size: 16px; letter-spacing:-0.2px; }
.brand__tag{
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
}

.nav{ display:flex; align-items:center; gap:10px; }
.nav__link{
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav__link:hover{
  background: rgba(37,99,235,0.06);
  color: var(--text);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(37,99,235,0.22);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37,99,235,0.14);
  transition: transform 160ms ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--small{ padding: 9px 12px; font-size: 14px; }
.btn--full{ width:100%; }

/* Hero */
.hero{
  position: relative;
  padding: 72px 0 34px;
  overflow:hidden;
}
.hero--light{
  background:
    radial-gradient(700px 480px at 88% 18%, rgba(245,158,11,0.12), transparent 62%),
    radial-gradient(760px 560px at 80% 86%, rgba(22,163,74,0.10), transparent 62%),
    radial-gradient(900px 540px at 18% 24%, rgba(37,99,235,0.12), transparent 62%);
}
.hero__media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(247,248,251,0.78), rgba(247,248,251,0.96)),
    url("images/hero.jpg") center/cover no-repeat;
  opacity: 0.45;
  pointer-events:none;
}
.hero__wrap{ position: relative; }
.pill{
  display:inline-block;
  font-size: 13px;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.90);
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.hero__lead{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 76ch;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; }

/* Jump cards */
.jump{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.jump__card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform 160ms ease, border-color 160ms ease;
}
.jump__card:hover{
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.22);
}
.jump__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.jump__card h2{
  font-size: 16px;
  margin: 0;
}
.jump__card p{
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.jump__tag{
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}
.jump__link{
  font-size: 14px;
  color: rgba(37,99,235,0.95);
  font-weight: 800;
}

/* Strip images */
.strip{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.strip img{
  width:100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: #fff;
}

/* Page layout */
.page{ padding: 44px 0 64px; }
.page__head{ margin-bottom: 18px; }
.page__head h1{
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.4px;
}
.page__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 0.85fr;
  gap: 14px;
  align-items:start;
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h2{ margin: 0 0 8px; font-size: 18px; }

.side{ position: sticky; top: 84px; }
.side__box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.page__cta{ margin-top: 16px; display:flex; gap:12px; flex-wrap:wrap; }

/* Bullets */
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* Forms */
.form{ margin-top: 12px; display:grid; gap: 12px; }
.field{ display:grid; gap: 7px; font-size: 13px; color: var(--muted); }
.input{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  outline:none;
}
.input:focus{
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 22px 0;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer__links a:hover{ color: var(--text); }
.footer__legal{ margin-top: 10px; }

/* ===== STRONGER Premium reveal animation ===== */
[data-reveal]{
  opacity: 0;
  transform: translateY(44px);
  filter: blur(7px);
  transition:
    opacity 900ms cubic-bezier(.2,.9,.2,1),
    transform 900ms cubic-bezier(.2,.9,.2,1),
    filter 900ms cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform, filter;
}

[data-reveal="left"]{ transform: translateX(-44px); }
[data-reveal="right"]{ transform: translateX(44px); }
[data-reveal="zoom"]{ transform: scale(0.94); }

.is-visible{
  opacity: 1 !important;
  transform: none !important;
  filter: blur(0) !important;
}

/* Respect accessibility setting */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .jump{ grid-template-columns: 1fr; }
  .strip{ grid-template-columns: 1fr; }
  .page__grid{ grid-template-columns: 1fr; }
  .side{ position: static; }
}/* ===== Operations: smaller premium image cards ===== */
.ops-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.ops-shot{
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ops-shot__link{
  display: block;
}

.ops-shot__img{
  width: 100%;
  height: 120px;       /* <<< smaller height */
  object-fit: cover;
  display: block;
}

.ops-shot__cap{
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px){
  .ops-grid{ grid-template-columns: 1fr; }
  .ops-shot__img{ height: 170px; }
}/* ===== Home: Trust details sections ===== */
.trust{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust__item{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--blue);
  flex: 0 0 auto;
}

.trust__dot--sun{ background: var(--sun); }
.trust__dot--green{ background: var(--green); }

.trust__title{
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.1px;
}

.trust__text{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 2px;
}

.section-lite{
  margin-top: 18px;
}

.section-lite__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-band{
  margin: 18px 0 0;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 16px;
}

.cta-band__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band__title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.cta-band__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .trust{ grid-template-columns: 1fr; }
  .section-lite__grid{ grid-template-columns: 1fr; }
}