:root {
  /* Corporate-neutral palette */
  --navy:    #16243d;   /* dark sections, footer, strong headings */
  --ink:     #1f2a3c;   /* headings */
  --body:    #3b4658;   /* main body text */
  --muted:   #5f6877;   /* secondary text (AA-contrast on soft + white) */
  --accent:  #2f5e8f;   /* primary accent — buttons, links */
  --accent-d:#244b73;   /* accent hover */
  --steel:   #5b7da6;   /* light accent details */
  --bg:      #ffffff;   /* page background */
  --soft:    #f3f6fa;   /* soft section background */
  --border:  #e3e8ef;

  --radius: 16px;
  --shadow: 0 16px 40px -28px rgba(22, 36, 61, 0.45);
  --shadow-card: 0 12px 30px -20px rgba(22, 36, 61, 0.30);
  --maxw: 1120px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.05rem);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.contact-email:focus-visible, .contact-card :focus-visible,
footer :focus-visible { outline-color: #cdd8e6; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  white-space: nowrap;
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--navy), var(--accent));
  flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav > .btn { flex: none; white-space: nowrap; }
@media (min-width: 1025px) { .nav-contact { display: none; } }

.nav-toggle {
  display: none;
  width: 42px; height: 38px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
}
.nav-toggle svg { display: block; }

@media (max-width: 1024px) {
  .nav > .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    z-index: 200;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px -16px rgba(22, 36, 61, 0.25);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
    font-size: 1rem;
    color: var(--ink);
  }
  .nav-links a:hover { background: var(--soft); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -24px rgba(22, 36, 61, 0.6);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--soft); color: var(--accent-d); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(47, 94, 143, 0.08), transparent 60%),
    var(--bg);
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(47, 94, 143, 0.09);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 1.1rem;
}
.hero .lede {
  font-size: clamp(1.1rem, 0.98rem + 0.6vw, 1.4rem);
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.3rem;
  max-width: 40ch;
}
.hero .desc {
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.hero-meta {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
}
.hero-meta .dot { color: var(--steel); }

/* Hero — company snapshot card */
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--navy), #21365a);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  color: #e7edf5;
}
.hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-card-top {
  position: relative;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-card-mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(140deg, var(--accent), var(--steel));
  display: flex; align-items: center; justify-content: center;
  font-family: "Source Serif 4", serif; font-weight: 700; color: #fff; font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.hero-card-label {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(231, 237, 245, 0.65);
}
.hero-facts { position: relative; margin: 0; }
.hero-facts > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(231, 237, 245, 0.12);
}
.hero-facts > div:last-child { border-bottom: none; padding-bottom: 0; }
.hero-facts dt { margin: 0; font-size: 0.85rem; color: rgba(231, 237, 245, 0.6); }
.hero-facts dd { margin: 0; font-size: 0.93rem; font-weight: 600; color: #fff; text-align: right; }

/* ---------- Sections ---------- */
section { padding: clamp(3.5rem, 7vw, 6rem) 0; scroll-margin-top: 84px; }
.section-soft { background: var(--soft); border-block: 1px solid var(--border); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); }
.lead-text {
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.2rem);
  color: var(--body);
  max-width: 66ch;
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -26px rgba(22, 36, 61, 0.42);
  border-color: #cfd8e6;
}
.card .ic {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(47, 94, 143, 0.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Brands ---------- */
.brands-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.brand-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(22, 36, 61, 0.42);
  border-color: #cfd8e6;
}
@media (max-width: 640px) {
  .brand-card { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
}
.brand-logo {
  flex: none;
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--navy), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Source Serif 4", serif; font-weight: 700; font-size: 1.9rem;
}
.brand-info { flex: 1; }
.brand-info h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.brand-domain { color: var(--accent); font-weight: 500; font-size: 0.95rem; }
.brand-info p { color: var(--muted); font-size: 0.97rem; margin-top: 0.6rem; max-width: 52ch; }
.status-badge {
  flex: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(47, 94, 143, 0.10);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.status-badge .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 3px rgba(91, 125, 166, 0.20);
}
@media (max-width: 640px) { .status-badge { align-self: flex-start; } }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.panel {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.section-soft .panel { background: var(--bg); }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--body); font-size: 0.97rem;
}
.feature-list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(47, 94, 143, 0.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; margin-top: 2px;
}

/* ---------- Corporate Information ---------- */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 640px) { .corp-grid { grid-template-columns: 1fr; } }
.corp-item { background: var(--bg); padding: 1.4rem 1.6rem; }
.corp-item dt {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem;
}
.corp-item dd {
  margin: 0; font-size: 1.05rem; font-weight: 500; color: var(--ink);
}

/* ---------- Contact ---------- */
.contact-card {
  background: linear-gradient(160deg, var(--navy), #21365a);
  color: #e7edf5;
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-card h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 1rem; }
.contact-card p { color: rgba(231, 237, 245, 0.82); margin: 0 auto 1.8rem; max-width: 48ch; }
.contact-email {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; color: #fff;
  padding: 0.85rem 1.6rem; border-radius: 10px;
  background: rgba(231, 237, 245, 0.10);
  border: 1px solid rgba(231, 237, 245, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-email:hover { background: rgba(231, 237, 245, 0.18); transform: translateY(-2px); text-decoration: none; }
.contact-phone {
  margin: 1.1rem 0 0;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 1rem; color: rgba(231, 237, 245, 0.9);
}
.contact-phone svg { color: var(--steel); flex: none; }
.contact-phone a { color: #fff; font-weight: 600; }
.contact-phone a:hover { text-decoration: underline; }

/* ---------- Legal / content pages ---------- */
.page { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.page-wrap { max-width: 850px; }
.page h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.5rem; }
.page .effective {
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
  margin-bottom: 2.2rem;
}
.page-lead {
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.18rem);
  color: var(--body);
  margin-bottom: 1.4rem;
}
.page h2 { font-size: 1.3rem; margin: 2.2rem 0 0.7rem; }
.page p { color: var(--body); margin-bottom: 1rem; }
.page ul { margin: 0 0 1.2rem; padding-left: 1.25rem; color: var(--body); }
.page li { margin-bottom: 0.45rem; }
.page a { color: var(--accent); }
.page hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.back-home {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 2.5rem; font-weight: 600;
}

/* Contact page card */
.contact-page-card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 1.6rem;
}
.contact-page-card dt {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem;
}
.contact-page-card dd { margin: 0 0 1.2rem; font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.contact-page-card dd:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: rgba(231, 237, 245, 0.75); padding: clamp(3rem, 5vw, 4rem) 0 2.5rem; }
.foot-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(231, 237, 245, 0.14);
}
.foot-brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: "Source Serif 4", serif; font-weight: 600; font-size: 1.2rem; color: #fff;
}
.foot-brand .mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(140deg, var(--accent), var(--steel));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.66rem; font-weight: 700;
}
.foot-desc { font-size: 0.93rem; max-width: 34ch; margin-top: 0.8rem; }
.foot-nav, .foot-legal { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; }
.foot-nav a, .foot-legal a { text-decoration: none; }
.foot-nav a { color: rgba(231, 237, 245, 0.78); font-size: 0.93rem; font-weight: 500; }
.foot-nav a:hover { color: #fff; text-decoration: underline; }
.foot-legal { padding: 1.6rem 0; }
.foot-legal a { color: rgba(231, 237, 245, 0.7); font-size: 0.88rem; }
.foot-legal a:hover { color: #fff; text-decoration: underline; }
.foot-bottom {
  padding-top: 1.6rem; font-size: 0.86rem; color: rgba(231, 237, 245, 0.72);
  border-top: 1px solid rgba(231, 237, 245, 0.14);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
