/* ==========================================================================
   Arulneri Cyprian — personal brand site
   1. Tokens          6. Timelines
   2. Reset & base    7. Ventures / work
   3. Navigation      8. Archive / lightbox
   4. Hero            9. Contact / footer
   5. Cards          10. Motion & responsive
   ========================================================================== */

/* ------------------------------------------------------------------ 1. Tokens */
:root {
  /* brand */
  --navy-900: #071426;
  --navy-800: #0a1a33;
  --navy-700: #0e274a;
  --navy-600: #143563;
  --blue-600: #1d5cbd;
  --blue-500: #2a72dd;
  --blue-400: #4a90f0;
  --blue-100: #dbe8fb;
  --blue-050: #eff5fe;

  --orange-600: #d96a12;
  --orange-500: #f38020;
  --orange-400: #ff9d4d;
  --orange-100: #ffe9d4;

  /* surfaces */
  --bg: #ffffff;
  --bg-tint: #f6f9fe;
  --bg-tint-2: #eef4fc;
  --surface: #ffffff;
  --line: #e2eaf5;
  --line-strong: #cfdcef;

  /* text */
  --ink: #0d1c33;
  --ink-soft: #3d4f6b;
  --ink-mute: #64748e;
  --ink-invert: #ffffff;
  --ink-invert-soft: #b9cbe6;

  /* type */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-quote: "Newsreader", Georgia, serif;

  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.6rem);
  --step-4: clamp(1.95rem, 1.55rem + 1.9vw, 3rem);
  --step-5: clamp(2.3rem, 1.7rem + 2.4vw, 3.65rem);

  /* space */
  --gutter: clamp(1.15rem, 0.7rem + 2.2vw, 2.5rem);
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --shell: 1240px;
  --shell-narrow: 900px;

  /* effects */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(10, 26, 51, 0.05), 0 2px 8px rgba(10, 26, 51, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 26, 51, 0.06), 0 14px 32px rgba(10, 26, 51, 0.07);
  --shadow-lg: 0 10px 24px rgba(10, 26, 51, 0.08), 0 28px 60px rgba(10, 26, 51, 0.1);
  --shadow-blue: 0 12px 28px rgba(29, 92, 189, 0.18);
  --shadow-orange: 0 10px 24px rgba(243, 128, 32, 0.26);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 72px;
}

/* ------------------------------------------------------------- 2. Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.72;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.1;
  letter-spacing: -0.021em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); font-weight: 800; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }

img { max-width: 100%; display: block; height: auto; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }

strong, b { font-weight: 700; color: var(--navy-800); }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--orange-100); color: var(--navy-800); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ---- layout primitives ---- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--bg-tint); }
.section--tint-2 {
  background:
    radial-gradient(70% 90% at 92% 4%, rgba(74, 144, 240, 0.09), transparent 60%),
    radial-gradient(60% 80% at 4% 98%, rgba(243, 128, 32, 0.07), transparent 60%),
    var(--bg-tint);
}
.section--dark {
  background:
    radial-gradient(85% 100% at 88% 0%, rgba(42, 114, 221, 0.35), transparent 62%),
    radial-gradient(65% 85% at 6% 100%, rgba(243, 128, 32, 0.16), transparent 60%),
    linear-gradient(168deg, var(--navy-800), var(--navy-900) 62%, #050f1d);
  color: var(--ink-invert-soft);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark strong { color: #fff; }

/* hairline divider between light sections */
.section--edge { border-top: 1px solid var(--line); }

/* ---- section headers ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--orange-400); }
.section--dark .eyebrow::before { background: var(--orange-400); }

.s-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head--center .eyebrow { justify-content: center; }
.s-head__lead {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin-top: 1.15rem;
  line-height: 1.66;
}
.section--dark .s-head__lead { color: var(--ink-invert-soft); }

.lead {
  font-size: var(--step-1);
  line-height: 1.68;
  color: var(--ink-soft);
}

/* accent word inside headings */
.hl { color: var(--blue-600); }
.hl-o { color: var(--orange-600); }
.section--dark .hl { color: var(--blue-400); }
.section--dark .hl-o { color: var(--orange-400); }

/* underline flourish */
.mark {
  position: relative;
  white-space: nowrap;
}
.mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.3em;
  background: linear-gradient(90deg, rgba(243, 128, 32, 0.32), rgba(243, 128, 32, 0.14));
  border-radius: 3px;
  z-index: -1;
}

/* ---- buttons ---- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-500); box-shadow: 0 16px 34px rgba(29, 92, 189, 0.28); }

.btn--accent { --btn-bg: var(--orange-500); box-shadow: var(--shadow-orange); }
.btn--accent:hover { background: var(--orange-400); box-shadow: 0 16px 34px rgba(243, 128, 32, 0.32); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--on-dark {
  --btn-fg: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
}
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.45); }

.btn--wa { --btn-bg: #25a35a; box-shadow: 0 10px 24px rgba(37, 163, 90, 0.28); }
.btn--wa:hover { background: #2bb765; box-shadow: 0 16px 32px rgba(37, 163, 90, 0.34); }

.btn--sm { padding: 0.72rem 1.2rem; font-size: 0.9rem; }

/* text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-600);
  text-decoration: none;
}
.tlink svg { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.tlink:hover { color: var(--orange-600); }
.tlink:hover svg { transform: translateX(4px); }

/* ---- pills / chips ---- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  color: var(--navy-700);
  font-size: 0.83rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}
.chip--accent { background: #fff6ec; border-color: var(--orange-100); color: var(--orange-600); }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem 0.3rem 0.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge--active { background: rgba(37, 163, 90, 0.1); color: #1c8046; }
.badge--emerging { background: var(--orange-100); color: var(--orange-600); }
/* badges sitting on the dark venture panel need lighter ink */
.vent__aside .badge--active {
  background: rgba(74, 222, 137, 0.16);
  color: #7ce8a9;
  border: 1px solid rgba(74, 222, 137, 0.3);
}
.vent__aside .badge--emerging {
  background: rgba(255, 157, 77, 0.18);
  color: #ffc38a;
  border: 1px solid rgba(255, 157, 77, 0.34);
}

/* ---- generic surface card ---- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card h3 + p, .card h4 + p { margin-top: 0.7rem; }
.card p { color: var(--ink-soft); }

/* icon tile */
.itile {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--blue-600), var(--navy-700));
  color: #fff;
  margin-bottom: 1.15rem;
  box-shadow: 0 6px 16px rgba(20, 53, 99, 0.22);
  flex: none;
}
.itile svg { width: 24px; height: 24px; }
.itile--accent { background: linear-gradient(150deg, var(--orange-500), var(--orange-600)); box-shadow: 0 6px 16px rgba(217, 106, 18, 0.24); }
.itile--sm { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 0.9rem; }
.itile--sm svg { width: 19px; height: 19px; }

/* feature list with checks */
.flist { display: grid; gap: 0.5rem; margin-top: 1.1rem; }
.flist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.flist li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 0.52em;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(243, 128, 32, 0.14);
}

/* grids */
.grid { display: grid; gap: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

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

/* ------------------------------------------------------------- 3. Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.nav.is-stuck {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(10, 26, 51, 0.06);
}
.nav__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
  flex: none;
}
.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--blue-600), var(--navy-700));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 5px 14px rgba(20, 53, 99, 0.24);
  flex: none;
}
.brand__mark::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange-500);
  border: 2px solid #fff;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.brand__role {
  font-size: 0.685rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* desktop links */
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover { color: var(--navy-800); background: var(--blue-050); }
.nav__link.is-active { color: var(--navy-800); font-weight: 650; }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { flex: none; margin-left: 0.4rem; }

/* hamburger */
.burger {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger span + span { margin-top: 4.5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem var(--gutter) 1.6rem;
  display: grid;
  gap: 0.2rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s var(--ease), opacity 0.24s var(--ease), visibility 0.32s;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--bg-tint-2);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
}
.drawer a:last-of-type { border-bottom: 0; }
.drawer a span { color: var(--line-strong); font-size: 0.85rem; }
.drawer .btn { margin-top: 0.9rem; width: 100%; }

@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: grid; }
}

/* mobile sticky WhatsApp CTA */
.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: #25a35a;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 163, 90, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-fab svg { width: 20px; height: 20px; }
.wa-fab:hover, .wa-fab:focus-visible { color: #fff; transform: translateY(-2px); }
@media (max-width: 1080px) { .wa-fab { display: inline-flex; } }
@media (max-width: 380px) { .wa-fab__label { display: none; } .wa-fab { padding: 0.9rem; } }

/* --------------------------------------------------------------- 4. Hero */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 2rem + 3vw, 5rem));
  padding-bottom: clamp(3rem, 2rem + 4vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 88% 8%, rgba(74, 144, 240, 0.13), transparent 62%),
    radial-gradient(50% 60% at 4% 92%, rgba(243, 128, 32, 0.09), transparent 60%),
    linear-gradient(178deg, #fbfdff 0%, var(--bg-tint) 55%, #eaf1fb 100%);
}
/* faint blueprint grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 53, 99, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 53, 99, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 12%, #000 32%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 12%, #000 32%, transparent 78%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 0.9rem 0.42rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--navy-700);
  margin-bottom: 1.5rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25a35a;
  box-shadow: 0 0 0 3px rgba(37, 163, 90, 0.16);
  flex: none;
  margin-left: 0.25rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .l2 { color: var(--blue-600); display: block; }
.hero h1 .l3 { color: var(--orange-600); display: block; }
.hero__sub {
  max-width: 56ch;
  font-size: var(--step-1);
  line-height: 1.66;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }

/* credibility strip */
.cred {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 620px;
}
.cred__item {
  flex: 1 1 0;
  min-width: 132px;
  padding: 1.05rem 1.15rem;
  border-left: 1px solid var(--line);
}
.cred__item:first-child { border-left: 0; }
.cred__num {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.3rem + 0.9vw, 2.05rem);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cred__num .plus { color: var(--orange-500); }
.cred__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.35;
}

/* ---- portrait ---- */
.hero__figure { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.portrait {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(75% 65% at 50% 8%, rgba(74, 144, 240, 0.5), transparent 62%),
    linear-gradient(165deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20, 53, 99, 0.1);
  isolation: isolate;
}
/* concentric arc backdrop behind subject */
.portrait__rings {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.portrait__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
/* warm rim light along bottom */
.portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  z-index: 2;
  background: linear-gradient(to top, rgba(7, 20, 38, 0.72), transparent);
  pointer-events: none;
}
.portrait__caption {
  position: absolute;
  z-index: 3;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #fff;
}
.portrait__caption strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
}
.portrait__caption span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}
.portrait__flag {
  margin-left: auto;
  flex: none;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange-500);
  color: #fff;
}
.portrait__flag svg { width: 17px; height: 17px; }

/* placeholder monogram shown until a photograph is supplied */
.portrait__ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 2rem 1.5rem 5.5rem;
  color: #fff;
}
.portrait__ph-mono {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 2.4rem + 4.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(160deg, #fff 20%, rgba(255, 255, 255, 0.62));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.portrait__ph-rule {
  width: 54px; height: 3px;
  border-radius: 3px;
  background: var(--orange-500);
  margin: 1.1rem 0 1.1rem;
}
.portrait__ph-note {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  max-width: 24ch;
}

/* floating accent card */
.hero__chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--navy-800);
  white-space: nowrap;
}
.hero__chip .itile { margin: 0; }
.hero__chip small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero__chips { display: contents; }
.hero__chip--a { left: -1.5rem; top: 16%; animation: float 7s var(--ease) infinite; }
.hero__chip--b { right: -1.25rem; bottom: 20%; animation: float 8.5s var(--ease) 0.6s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* languages ticker under hero */
.hero__langs {
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.75rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.5rem;
}
.hero__langs-label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__langs ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
.hero__langs li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__langs li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange-500);
  opacity: 0.75;
}

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 2.75rem; }
  .hero__figure { order: -1; max-width: 380px; }
  .hero h1 { font-size: clamp(2.3rem, 1.7rem + 3.4vw, 3.4rem); }
  .cred { max-width: none; }
}
/* below the two-column break the chips would collide with the caption:
   move them out of the portrait and render them as a static pair */
@media (max-width: 700px) {
  .hero__figure { max-width: 340px; }
  .hero__chip {
    position: static;
    animation: none;
    width: 100%;
    white-space: normal;
  }
  .hero__chips {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.9rem;
  }
}
@media (max-width: 520px) {
  .hero__chip { font-size: 0.82rem; padding: 0.65rem 0.85rem; }
  .hero__chip .itile { width: 34px; height: 34px; border-radius: 10px; }
  .hero__chip .itile svg { width: 17px; height: 17px; }
  .cred__item { min-width: 50%; }
  .hero__actions .btn { width: 100%; }
}

/* ---------------------------------------------------- 5. Feature/identity cards */
/* three core identity cards */
.idcard {
  position: relative;
  overflow: hidden;
  padding-top: clamp(1.7rem, 1.3rem + 1.2vw, 2.3rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.idcard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.idcard:nth-child(2)::before { background: linear-gradient(90deg, var(--orange-500), var(--orange-400)); }
.idcard:nth-child(3)::before { background: linear-gradient(90deg, var(--navy-700), var(--blue-500)); }
.idcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.idcard:hover::before { transform: scaleX(1); }
/* watermark numeral */
.idcard__n {
  position: absolute;
  right: 1.1rem;
  top: 0.4rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-800);
  opacity: 0.05;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.idcard__body {
  padding-inline: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  padding-bottom: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
}
.idcard h3 { margin-bottom: 0.75rem; }
.idcard p { color: var(--ink-soft); }
.idcard .itile { transition: transform 0.4s var(--ease); }
.idcard:hover .itile { transform: rotate(-6deg) scale(1.06); }

/* purpose / intro split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 1.2rem + 3.5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); gap: 2.25rem; } }

/* pull-quote block */
.pquote {
  position: relative;
  padding: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--blue-050), #fff);
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
}
.pquote::before {
  content: "\201C";
  position: absolute;
  left: 1.1rem;
  top: 0.1rem;
  font-family: var(--font-quote);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-500);
  opacity: 0.24;
}
.pquote--spaced { margin-top: 1.75rem; }
.pquote p {
  position: relative;
  font-family: var(--font-quote);
  font-style: italic;
  font-size: var(--step-2);
  line-height: 1.45;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

/* sector tags used in intro */
.sectors { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.6rem; }

/* ------------------------------------------------------------- 6. Timelines */
/* education timeline (vertical, alternating dot rail) */
.tl { position: relative; margin-top: 0.5rem; }
.tl::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--blue-400), var(--blue-100) 70%, transparent);
}
.tl__item { position: relative; padding-left: 2.6rem; padding-bottom: 1.75rem; }
.tl__item:last-child { padding-bottom: 0; }
.tl__item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-500);
  box-shadow: 0 0 0 4px rgba(42, 114, 221, 0.1);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tl__item:hover::before { border-color: var(--orange-500); box-shadow: 0 0 0 5px rgba(243, 128, 32, 0.16); }
.tl__title {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--navy-800);
  line-height: 1.4;
}
.tl__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--ink-mute);
}

/* professional journey — horizontal scroll rail on desktop */
.journey { position: relative; }
.journey__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 1fr);
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.6rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.journey__rail::-webkit-scrollbar { height: 8px; }
.journey__rail::-webkit-scrollbar-track { background: rgba(255,255,255,0.07); border-radius: 8px; }
.journey__rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 8px; }
.journey__rail:hover::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.4); }

.jstep {
  position: relative;
  scroll-snap-align: start;
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.jstep:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.jstep__idx {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange-400);
  margin-bottom: 0.85rem;
}
.jstep__idx::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 128, 32, 0.5), transparent);
}
.jstep h4 { color: #fff; font-size: 1.06rem; margin-bottom: 0.5rem; }
.jstep p { font-size: 0.91rem; color: var(--ink-invert-soft); line-height: 1.58; margin: 0; }
.jstep--accent { background: rgba(243, 128, 32, 0.11); border-color: rgba(243, 128, 32, 0.34); }

.rail-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(185, 203, 230, 0.75);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.rail-hint svg { width: 16px; height: 16px; }
@media (min-width: 1100px) { .rail-hint { display: none; } }

/* --------------------------------------------------- 7. Services / ventures */
/* language cards with header band */
.lcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
}
.lcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.lcard__top {
  padding: 1.35rem 1.5rem;
  background: linear-gradient(140deg, var(--navy-700), var(--blue-600));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lcard__top::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}
.lcard:nth-child(2) .lcard__top { background: linear-gradient(140deg, #14395f, var(--blue-500)); }
.lcard:nth-child(3) .lcard__top { background: linear-gradient(140deg, #123a5c, #2b7fc9); }
.lcard:nth-child(4) .lcard__top { background: linear-gradient(140deg, var(--orange-600), var(--orange-500)); }
.lcard__script {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.lcard__top h3 { color: #fff; font-size: var(--step-1); }
.lcard__medium {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.lcard__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.lcard__body .flist { margin-top: 0; }

/* tech card with corner index */
.tcard { position: relative; overflow: hidden; }
.tcard::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 114, 221, 0.08), transparent 70%);
  transition: transform 0.5s var(--ease);
}
.tcard:hover::after { transform: scale(1.35); }
.tcard__head { display: flex; align-items: flex-start; gap: 1rem; }
.tcard__head h3 { font-size: var(--step-1); flex: 1; }

/* compact creative/marketing grid */
.mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-800);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.mini:hover { transform: translateY(-3px); border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.mini svg { width: 19px; height: 19px; color: var(--blue-600); flex: none; }
.mini small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.79rem;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.85rem;
}

/* consulting cards on dark */
.ccard {
  padding: 1.6rem 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
}
.ccard:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.28); }
.ccard h3 { font-size: var(--step-1); margin-bottom: 0.6rem; color: #fff; }
.ccard p { color: var(--ink-invert-soft); font-size: 0.95rem; margin: 0; }

/* ---- ventures ---- */
.vent {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.vent:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--line-strong); }
.vent__aside {
  position: relative;
  padding: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
}
.vent__aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 78% 12%, rgba(74, 144, 240, 0.38), transparent 62%),
    radial-gradient(50% 50% at 12% 96%, rgba(243, 128, 32, 0.2), transparent 62%);
  pointer-events: none;
}
.vent--skil .vent__aside { background: linear-gradient(155deg, #10305c, #071426); }
.vent--cart .vent__aside { background: linear-gradient(155deg, #14452f, #06180f); }
.vent--cart .vent__aside::after {
  background:
    radial-gradient(70% 60% at 78% 12%, rgba(74, 214, 140, 0.28), transparent 62%),
    radial-gradient(50% 50% at 12% 96%, rgba(243, 128, 32, 0.2), transparent 62%);
}
.vent--biz .vent__aside { background: linear-gradient(155deg, #6a3308, #241004); }
.vent--biz .vent__aside::after {
  background:
    radial-gradient(70% 60% at 78% 12%, rgba(255, 157, 77, 0.34), transparent 62%),
    radial-gradient(50% 50% at 12% 96%, rgba(42, 114, 221, 0.22), transparent 62%);
}
.vent__logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.vent__logo-mark {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  flex: none;
}
.vent__logo-mark svg { width: 22px; height: 22px; }
.vent__name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #fff;
}
.vent__kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-400);
}
.vent__main {
  padding: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.vent__main > p { margin: 0; color: var(--ink-soft); }
.vent__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: auto; }
.vent__url {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-mute);
  text-decoration: none;
}
.vent__url svg { width: 15px; height: 15px; }
.vent__url:hover { color: var(--blue-600); }
@media (max-width: 860px) {
  .vent { grid-template-columns: minmax(0, 1fr); }
  .vent__aside { flex-direction: row; align-items: center; justify-content: flex-start; gap: 1rem; }
  .vent__aside .vent__logo { flex: none; }
}
@media (max-width: 480px) {
  .vent__aside { flex-direction: column; align-items: flex-start; }
}

/* venture list of concept points */
.vent__points { display: grid; gap: 0.55rem; }
.vent__points li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.vent__points li svg { width: 17px; height: 17px; flex: none; margin-top: 0.28em; color: var(--orange-500); }

/* ---- selected work: filterable ---- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.fbtn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.fbtn:hover { border-color: var(--blue-500); color: var(--blue-600); }
.fbtn.is-on {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.wgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1.1rem, 0.8rem + 1vw, 1.6rem); }
.wcard {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.45rem 1.6rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
}
.wcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wcard[hidden] { display: none; }
.wcard__cat {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  padding: 0.26rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-050);
}
.wcard h3 { font-size: 1.14rem; line-height: 1.32; }
.wcard p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }
.wcard__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.35rem; }
.wcard__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mute);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--bg-tint-2);
}

/* --------------------------------------------- 8. Achievements / archive */
/* achievement cards */
.acard {
  position: relative;
  display: flex;
  gap: 1.1rem;
  padding: 1.55rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
}
.acard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.acard__body { flex: 1; min-width: 0; }
.acard h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.acard p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }
.acard__role {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 0.35rem;
}

/* media/journalism strip */
.mstrip { display: grid; gap: 1rem; }
.mrow {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mrow:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.26); transform: translateX(4px); }
.mrow__body { flex: 1; min-width: 0; }
.mrow h4 { color: #fff; font-size: 1.04rem; margin-bottom: 0.2rem; }
.mrow p { font-size: 0.9rem; color: var(--ink-invert-soft); margin: 0; }

/* ---- archive gallery ---- */
.arch {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 30vw, 340px);
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.4rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.arch::-webkit-scrollbar { height: 8px; }
.arch::-webkit-scrollbar-track { background: var(--bg-tint-2); border-radius: 8px; }
.arch::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }

.afig {
  position: relative;
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.afig:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.afig img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s var(--ease);
}
.afig:hover img { transform: scale(1.06); }
.afig figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.1rem 0.95rem;
  background: linear-gradient(to top, rgba(7, 20, 38, 0.88), rgba(7, 20, 38, 0.25) 60%, transparent);
  color: #fff;
  font-size: 0.87rem;
  font-weight: 550;
  line-height: 1.45;
}
.afig figcaption strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
/* empty-slot state for archive photos not yet supplied */
.afig--empty { cursor: default; border-style: dashed; border-color: var(--line-strong); background: var(--bg-tint-2); }
.afig--empty:hover { transform: none; box-shadow: var(--shadow-sm); }
.afig__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-mute);
}
.afig__ph svg { width: 30px; height: 30px; color: var(--line-strong); }
.afig__ph span { font-size: 0.85rem; line-height: 1.5; max-width: 26ch; font-weight: 550; }
.afig__ph b {
  font-family: var(--font-display);
  font-size: 0.93rem;
  color: var(--navy-700);
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(5, 13, 26, 0.93);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__stage { position: relative; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.lb__img {
  max-width: 100%;
  max-height: calc(100vh - 12rem);
  width: auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.36s var(--ease-out);
  object-fit: contain;
}
.lb.is-open .lb__img { transform: scale(1); }
.lb__cap {
  color: #e6eefb;
  font-size: 0.94rem;
  text-align: center;
  max-width: 70ch;
  margin-inline: auto;
}
.lb__cap strong { color: #fff; display: block; font-family: var(--font-display); margin-bottom: 0.15rem; }
.lb__count { margin: 0; color: rgba(185, 203, 230, 0.7); font-size: 0.83rem; font-family: var(--font-display); letter-spacing: 0.06em; }
.lb__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lb__btn:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); }
.lb__btn svg { width: 20px; height: 20px; }
.lb__prev { left: -3.6rem; }
.lb__next { right: -3.6rem; }
.lb__close { position: fixed; top: 1.1rem; right: 1.1rem; transform: none; }
@media (max-width: 900px) {
  .lb__prev { left: 0.25rem; }
  .lb__next { right: 0.25rem; }
  .lb__img { max-height: calc(100vh - 14rem); }
}

/* ------------------------------------------------- 9. Insights / contact */
/* philosophy: dark editorial band */
.philo { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 1.2rem + 3vw, 4rem); align-items: center; }
@media (max-width: 900px) { .philo { grid-template-columns: minmax(0, 1fr); } }
.philo__quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.5rem, 1.15rem + 1.7vw, 2.45rem);
  line-height: 1.34;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}
.philo__quote em { color: var(--orange-400); font-style: italic; }
.ilist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.ilist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.28s var(--ease), transform 0.28s var(--ease);
}
.ilist li:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.ilist svg { width: 17px; height: 17px; color: var(--orange-400); flex: none; }
@media (max-width: 480px) { .ilist { grid-template-columns: minmax(0, 1fr); } }

/* current focus cards */
.focus {
  position: relative;
  padding: 1.6rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.focus:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.focus__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.9rem;
}
.focus h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.focus p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* vision band */
.vision {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 1.6rem + 3vw, 4.25rem);
  text-align: center;
  background:
    radial-gradient(70% 90% at 85% 0%, rgba(74, 144, 240, 0.4), transparent 60%),
    radial-gradient(55% 75% at 8% 100%, rgba(243, 128, 32, 0.24), transparent 62%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(90% 80% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(90% 80% at 50% 50%, #000, transparent 75%);
}
.vision__inner { position: relative; max-width: 62ch; margin-inline: auto; }
.vision p.vision__eyebrow {
  font-family: var(--font-display);
  font-style: normal;
  font-size: var(--step--1);
  line-height: 1.4;
}
.vision__statement {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.35rem, 1.05rem + 1.5vw, 2.15rem);
  line-height: 1.42;
  color: #fff;
  letter-spacing: -0.012em;
  margin: 0;
}
.vision__mark {
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 1.5rem;
  color: var(--orange-400);
}
.vision__mark svg { width: 26px; height: 26px; }

/* ---- contact ---- */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.75rem, 1.2rem + 2.5vw, 3.25rem); }
@media (max-width: 900px) { .contact { grid-template-columns: minmax(0, 1fr); } }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.9rem 0 2rem; }
.contact__actions .btn { flex: 1 1 auto; min-width: 158px; }

.dlist { display: grid; gap: 0.15rem; }
.drow {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0.2rem;
  border-bottom: 1px solid var(--line);
}
.drow:last-child { border-bottom: 0; }
.drow__ico {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--blue-050);
  color: var(--blue-600);
  flex: none;
}
.drow__ico svg { width: 18px; height: 18px; }
.drow__body { min-width: 0; }
.drow__k {
  display: block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.28rem;
}
.drow__v { display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; }
.drow__v a, .drow__v span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  word-break: break-word;
}
.drow__v a:hover { color: var(--orange-600); }

/* contact panel card */
.cpanel {
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, var(--blue-050), #fff 60%);
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

/* social row */
.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.socials a {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--navy-700);
  transition: all 0.26s var(--ease);
}
.socials a svg { width: 19px; height: 19px; }
.socials a:hover {
  transform: translateY(-3px);
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* ---- footer ---- */
.footer {
  background: linear-gradient(180deg, var(--navy-900), #04101f);
  color: var(--ink-invert-soft);
  padding-block: clamp(2.75rem, 2rem + 2.5vw, 4rem) 1.75rem;
  font-size: 0.94rem;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 1.2rem + 2.5vw, 3.5rem);
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 780px) { .footer__top { grid-template-columns: minmax(0, 1fr); gap: 2rem; } }
.footer .brand__name { color: #fff; }
.footer .brand__role { color: rgba(185, 203, 230, 0.72); }
.footer__blurb { margin-top: 1.1rem; max-width: 42ch; color: var(--ink-invert-soft); line-height: 1.66; }
.footer h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__links { display: grid; gap: 0.6rem; }
.footer__links a {
  color: var(--ink-invert-soft);
  text-decoration: none;
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
  display: inline-block;
  word-break: break-word;
}
.footer__links a:hover { color: #fff; transform: translateX(3px); }
.footer__bot {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.87rem;
  color: rgba(185, 203, 230, 0.7);
}
.footer__bot p { margin: 0; }

/* ------------------------------------------------ 10. Motion & utilities */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .nav, .drawer, .wa-fab, .lb, .hero__chip { display: none !important; }
  body { color: #000; }
  .section--dark, .vision, .vent__aside { background: #f4f4f4 !important; color: #000 !important; }
  .section--dark h2, .section--dark h3, .section--dark h4, .vision p { color: #000 !important; }
}

/* ---- small layout utilities ---- */
.h3-lg { font-size: var(--step-3); }
.u-mt-sm { margin-top: 1rem; }
.u-mt-md { margin-top: 1.5rem; }
.u-mt-lg { margin-top: clamp(2rem, 1.5rem + 1.6vw, 3rem); }
.u-center { text-align: center; }
.u-mb-0 { margin-bottom: 0; }
.itile--flush { margin-bottom: 0; }
.tcard__body-gap { margin-top: 1rem; }
/* dark CTA tile inside a light card grid */
.card--invite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border-color: transparent;
}
.card--invite h3 { color: #fff; }
.card--invite p { color: var(--ink-invert-soft); margin-top: 0.7rem; }
.tl-head { margin-bottom: 1.6rem; font-size: var(--step-1); }
.vgrid { display: grid; gap: clamp(1.25rem, 0.9rem + 1.2vw, 2rem); }
.vent__url--soon { cursor: default; color: var(--ink-mute); }
.vent__url--soon:hover { color: var(--ink-mute); }
.vent .badge { margin-left: auto; }
@media (max-width: 860px) { .vent .badge { margin-left: 0; } }
.wnote {
  margin-top: 1.75rem;
  font-size: 0.94rem;
  color: var(--ink-mute);
}
/* fifth achievement card spans both columns */
.acard--wide { grid-column: 1 / -1; }
@media (max-width: 620px) { .acard--wide { grid-column: auto; } }
/* rail hint on light backgrounds */
.rail-hint--light { color: var(--ink-mute); }
@media (min-width: 1100px) { .rail-hint--light { display: flex; } }
.u-mb-md { margin-bottom: 1.5rem; }
.ilist-head {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 1.15rem;
}
.focus--accent {
  background: linear-gradient(160deg, #fff8f1, #fff);
  border-color: var(--orange-100);
}
.focus--accent .focus__label { color: var(--orange-600); }
.vision__eyebrow {
  justify-content: center;
  color: var(--orange-400);
  margin-bottom: 1.25rem;
}
.vision__eyebrow::before { background: var(--orange-400); }
.focus__label svg { flex: none; }


/* ==========================================================================
   PREMIUM HERO REFRESH — inspired by the supplied visual reference
   ========================================================================== */
:root { --topbar-h: 38px; --nav-total-h: 110px; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--topbar-h);
  background: #071426;
  color: rgba(255,255,255,.9);
  font-family: var(--font-display);
  font-size: .78rem;
}
.topbar__inner {
  max-width: var(--shell);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__contact, .topbar__social { display:flex; align-items:center; gap:1.4rem; }
.topbar a { color: rgba(255,255,255,.92); text-decoration:none; }
.topbar a:hover { color: var(--orange-400); }
.topbar__social a { font-weight:800; min-width:18px; text-align:center; }

.nav { top: var(--topbar-h); }
.drawer { inset: var(--nav-total-h) 0 auto 0; max-height: calc(100vh - var(--nav-total-h)); }

.hero.hero--premium {
  min-height: 770px;
  padding-top: calc(var(--nav-total-h) + 3rem);
  padding-bottom: 3.8rem;
  color: #fff;
  background:
    radial-gradient(45% 80% at 84% 42%, rgba(243,128,32,.18), transparent 65%),
    radial-gradient(48% 85% at 78% 18%, rgba(42,114,221,.42), transparent 66%),
    linear-gradient(145deg, #071b3c 0%, #061a3b 45%, #031128 100%);
}
.hero.hero--premium::before {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.13) 1.2px, transparent 1.4px),
    radial-gradient(circle, rgba(74,144,240,.16) 1px, transparent 1.3px);
  background-size: 18px 18px, 28px 28px;
  background-position: 64% 20%, 82% 45%;
  mask-image: radial-gradient(75% 100% at 78% 38%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 100% at 78% 38%, #000 10%, transparent 78%);
}
.hero__glow {
  position:absolute;
  width:480px; height:480px;
  right:9%; top:110px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(243,128,32,.28), rgba(243,128,32,.08) 35%, transparent 70%);
  filter: blur(16px);
  pointer-events:none;
}
.hero--premium .hero__inner {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: center;
  min-height: 650px;
}
.hero--premium .hero__copy { position:relative; z-index:5; }
.hero__experience {
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.7rem;
  padding:.55rem 1rem;
  border:1px solid rgba(62,183,255,.7);
  border-radius:999px;
  color:#fff;
  font-family:var(--font-display);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.06em;
  margin-bottom:1.6rem;
  background:rgba(4,22,51,.34);
}
.hero__experience span { color:rgba(255,255,255,.6); }
.hero--premium h1 {
  color:#fff;
  font-size:clamp(2.65rem, 2rem + 3vw, 4rem);
  max-width: 760px;
  margin-bottom:1.25rem;
}
.hero--premium h1 .l2 { color:#fff; }
.hero--premium h1 .l3 { color:var(--orange-500); }
.hero--premium .hero__sub {
  color:rgba(255,255,255,.9);
  max-width: 680px;
  font-size:clamp(1rem, .94rem + .25vw, 1.15rem);
}
.hero--premium .hero__sub strong { color:#fff; }
.hero--premium .hero__actions { margin-bottom:2rem; }
.hero--premium .btn--on-dark {
  color:#fff;
  border-color:rgba(255,255,255,.45);
  background:rgba(255,255,255,.04);
}
.hero--premium .btn--on-dark:hover { color:#fff; border-color:#fff; background:rgba(255,255,255,.1); }

.cred.cred--dark {
  max-width: 100%;
  border-color:rgba(255,255,255,.25);
  background:rgba(5,22,51,.38);
  box-shadow:none;
}
.cred--dark .cred__item { border-left-color:rgba(255,255,255,.22); }
.cred--dark .cred__num { color:#fff; }
.cred--dark .cred__label { color:rgba(255,255,255,.72); }

.hero__figure--premium {
  position:relative;
  align-self:stretch;
  max-width:none;
  min-height:680px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  margin-top:-62px;
  margin-bottom:-72px;
  z-index:3;
}
.portrait.portrait--premium {
  width:min(100%, 430px);
  height:700px;
  aspect-ratio:auto;
  overflow:visible;
  background:transparent;
  box-shadow:none;
  border-radius:0;
}
.portrait--premium .portrait__rings { opacity:.18; }
.portrait--premium .portrait__img {
  object-fit:contain;
  object-position:center bottom;
  mix-blend-mode:lighten;
  filter:saturate(1.04) contrast(1.02);
  -webkit-mask-image:linear-gradient(to bottom, transparent 0%, #000 4%, #000 94%, transparent 100%);
  mask-image:linear-gradient(to bottom, transparent 0%, #000 4%, #000 94%, transparent 100%);
}
.portrait--premium::after,
.portrait--premium .portrait__caption,
.portrait--premium .portrait__ph { display:none; }

.hero__whatsapp {
  position:absolute;
  right:1.6rem;
  bottom:1.6rem;
  z-index:8;
}
.hero__whatsapp a {
  width:62px; height:62px;
  display:grid; place-items:center;
  border-radius:50%;
  background:#21c063;
  color:#fff;
  font-size:2rem;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(33,192,99,.32);
  border:4px solid rgba(255,255,255,.12);
}
.hero__whatsapp a:hover { color:#fff; transform:translateY(-2px); }

@media (max-width: 1080px) {
  .hero.hero--premium {
    padding-top: calc(var(--nav-total-h) + 2rem);
  }
  .hero--premium .hero__inner {
    grid-template-columns:1fr;
    min-height:auto;
  }
  .hero--premium .hero__figure {
    order:-1;
    min-height:500px;
    margin-top:-30px;
    margin-bottom:-20px;
  }
  .portrait.portrait--premium { height:520px; width:min(100%,390px); }
  .hero--premium .hero__copy { text-align:center; }
  .hero__experience { justify-content:center; }
  .hero--premium .hero__sub { margin-inline:auto; }
  .hero--premium .hero__actions { justify-content:center; }
  .cred.cred--dark { text-align:left; }
}
@media (max-width: 680px) {
  :root { --topbar-h: 34px; --nav-total-h: 106px; }
  .topbar { font-size:.66rem; }
  .topbar__contact span { display:none; }
  .topbar__contact { gap:.6rem; }
  .topbar__social { gap:.5rem; }
  .nav { top:var(--topbar-h); }
  .drawer { inset:var(--nav-total-h) 0 auto 0; max-height:calc(100vh - var(--nav-total-h)); }
  .hero.hero--premium { min-height:0; padding-top:calc(var(--nav-total-h) + 1.4rem); padding-bottom:2.2rem; }
  .hero__glow { width:320px; height:320px; right:-90px; top:120px; }
  .hero__experience { font-size:.62rem; line-height:1.5; padding:.45rem .7rem; gap:.4rem; }
  .hero--premium h1 { font-size:clamp(2.2rem, 9vw, 3rem); }
  .hero--premium .hero__actions { flex-direction:column; }
  .hero--premium .hero__actions .btn { width:100%; }
  .hero--premium .hero__figure { min-height:430px; margin-top:-18px; margin-bottom:-8px; }
  .portrait.portrait--premium { height:450px; width:min(100%,330px); }
  .cred.cred--dark .cred__item { min-width:50%; }
  .hero__whatsapp { right:1rem; bottom:1rem; }
  .hero__whatsapp a { width:54px; height:54px; }
}
