:root {
  --bg: #05030a;
  --bg2: #0b0714;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --subtle: rgba(255, 255, 255, 0.12);
  --subtle2: rgba(255, 255, 255, 0.08);

  --pink: #ff3ea5;
  --pink2: #ff5db6;
  --black: #0a0811;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 28px;

  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font2: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(255, 62, 165, 0.16), transparent 60%),
    radial-gradient(900px 650px at 85% 10%, rgba(255, 93, 182, 0.14), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 62, 165, 0.55);
  text-underline-offset: 4px;
}

strong {
  font-weight: 800;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.bg__grid {
  position: absolute;
  inset: -2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(900px 700px at 50% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
  opacity: 0.25;
}
.bg__glow {
  position: absolute;
  filter: blur(60px);
  opacity: 0.7;
}
.bg__glow--a {
  width: 680px;
  height: 540px;
  left: -120px;
  top: -120px;
  background: radial-gradient(circle at 40% 35%, rgba(255, 62, 165, 0.6), rgba(255, 62, 165, 0) 65%);
}
.bg__glow--b {
  width: 720px;
  height: 620px;
  right: -190px;
  top: -160px;
  background: radial-gradient(circle at 45% 45%, rgba(255, 93, 182, 0.55), rgba(255, 93, 182, 0) 67%);
}
.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 17, 0.46);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header[data-elevate="true"] {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
}
.brand__text {
  display: grid;
  line-height: 1.06;
}
.brand__name {
  font-family: var(--font2);
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 14px;
}
.brand__sub {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav__toggleLines {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
}
.nav__toggleLines::before {
  top: 0;
}
.nav__toggleLines::after {
  bottom: 0;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.nav__cta {
  margin-left: 4px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.95), rgba(255, 93, 182, 0.95));
  box-shadow: 0 18px 40px rgba(255, 62, 165, 0.14);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.nav__cta:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.hero {
  padding: 76px 0 34px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.hero__copy {
  padding-top: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.84);
}
.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 62, 165, 0.14);
}
.hero__title {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.7px;
  font-weight: 900;
}
.hero__titleAccent {
  background: linear-gradient(135deg, rgba(255, 62, 165, 1), rgba(255, 255, 255, 0.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn--primary {
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.97), rgba(255, 93, 182, 0.92));
  color: rgba(0, 0, 0, 0.94);
  box-shadow: 0 18px 44px rgba(255, 62, 165, 0.20);
}
.btn--primary:hover {
  filter: brightness(1.06);
  text-decoration: none;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.085);
  text-decoration: none;
}
.btn--small {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}

.hero__facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}
.hero__facts dt,
.hero__facts dd {
  margin: 0;
}
.fact {
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.fact__k {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.fact__v {
  margin-top: 6px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.fact__v a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 62, 165, 0.5);
}

.hero__panel {
  position: relative;
}
.panel {
  border-radius: var(--radius2);
  background: radial-gradient(800px 500px at 15% 0%, rgba(255, 62, 165, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.panel__badge {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}
.panel__chip {
  width: 46px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.panel__body {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.panel__logo {
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
  line-height: 0;
}
.panel__logo img {
  width: min(100%, 260px);
  height: auto;
  max-height: 220px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: 50% 50%;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.45));
}
.panel__meta {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.panel__label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.panel__value {
  font-weight: 800;
  line-height: 1.35;
}
.panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 58px 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255, 62, 165, 0.06), rgba(0, 0, 0, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  max-width: 76ch;
}
.h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.4px;
}
.h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.link {
  margin-top: 10px;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-decoration-color: rgba(255, 62, 165, 0.45);
  text-underline-offset: 4px;
}

.grid {
  display: grid;
  gap: 16px;
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius2);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  min-height: 160px;
}
.card__big {
  font-family: var(--font2);
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.95), rgba(255, 93, 182, 0.85));
  color: rgba(0, 0, 0, 0.92);
  flex: 0 0 auto;
}

.identity {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 16px;
  align-items: start;
}
.identity__left {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.identity__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.identity__row:last-child {
  border-bottom: 0;
}
.identity__k {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.identity__v {
  font-weight: 800;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.08);
}

.identity__right .callout {
  border-radius: var(--radius2);
  padding: 18px;
  background: radial-gradient(700px 400px at 20% 0%, rgba(255, 62, 165, 0.20), transparent 55%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.callout__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.contact {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}
.contact__card {
  border-radius: var(--radius2);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact__card--dark {
  background: rgba(0, 0, 0, 0.24);
}
.contact__big {
  margin: 10px 0 8px;
  font-family: var(--font2);
  font-weight: 900;
  font-size: 20px;
}
.contact__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.map {
  margin-top: 28px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.map__head {
  padding: 18px 18px 0;
  display: grid;
  gap: 8px;
}
.map__grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.map__info {
  padding: 18px;
  background: rgba(0, 0, 0, 0.24);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-style: normal;
}
.map__org {
  font-family: var(--font2);
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.map__address {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-weight: 700;
  margin: 0 0 16px;
}
.map__facts {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.map__facts dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.map__facts dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}
.map__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map__embedWrap {
  min-height: 380px;
  background: rgba(0, 0, 0, 0.35);
}
.map__embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.map__note {
  padding: 12px 18px 16px;
  margin: 0;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.blog-card {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}
.blog-card__media:hover img {
  transform: scale(1.04);
}
.blog-card__body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.blog-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 62, 165, 0.14);
  border: 1px solid rgba(255, 62, 165, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.blog-card .h3 a {
  text-decoration: none;
}
.blog-card .h3 a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 62, 165, 0.55);
}
.blog-more {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.blog-page-hero {
  padding: 48px 0 10px;
}
.blog-page-hero .h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.blog-grid--archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article {
  padding: 34px 0 58px;
}
.article__hero {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
}
.article__hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.article__credit {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.article__head {
  max-width: 76ch;
  margin: 22px auto 0;
  padding: 0 0 8px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}
.article__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.article__content {
  max-width: 76ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  font-size: 16px;
}
.article__content h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.article__content p {
  margin: 0 0 14px;
}
.article__content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.article__content li {
  margin-bottom: 8px;
}
.article__note {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 62, 165, 0.08);
  border: 1px solid rgba(255, 62, 165, 0.22);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}
.article__footer {
  max-width: 76ch;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.footer {
  padding: 30px 0 44px;
}
.footer__inner {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
}
.footer__name {
  font-weight: 900;
  letter-spacing: 0.3px;
}
.footer__meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__links a {
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.80);
}
.footer__links a:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.footer__fineprint {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

/* mega footer (inspired by provided reference layout) */
.footer--mega {
  padding: 46px 0 28px;
  background: radial-gradient(1200px 600px at 18% 20%, rgba(255, 62, 165, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footerMega {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}
.footerMega__brand {
  display: grid;
  gap: 10px;
}
.footerMega__logo {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}
.footerMega__tagline {
  font-family: var(--font2);
  font-weight: 900;
  letter-spacing: -0.2px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}
.footerMega__desc {
  margin: 0;
  max-width: 46ch;
}
.footerMega__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.socialBtn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 900;
}
.socialBtn:hover {
  background: rgba(255, 255, 255, 0.10);
  text-decoration: none;
}

.footerMega__col {
  display: grid;
  gap: 10px;
}
.footerMega__title {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}
.footerMega__links {
  display: grid;
  gap: 8px;
}
.footerMega__links a {
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 0;
  border-radius: 10px;
  text-decoration: none;
}
.footerMega__links a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 62, 165, 0.55);
  text-underline-offset: 4px;
}
.footerMega__small {
  font-size: 12px;
  margin: 6px 0 0;
}
.footerMega__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footerMega__contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}
.footerMega__contact a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: underline;
  text-decoration-color: rgba(255, 62, 165, 0.5);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.ico {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 62, 165, 0.12);
  border: 1px solid rgba(255, 62, 165, 0.22);
  font-size: 12px;
}

.footerBottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.pdf {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.pdf__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.pdf__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.pdf__filename {
  font-weight: 900;
  letter-spacing: 0.2px;
}
.pdf__sep {
  opacity: 0.5;
}
.pdf__hint {
  color: var(--muted);
}
.pdf__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pdf__frameWrap {
  background: rgba(0, 0, 0, 0.35);
}
.pdf__frame {
  display: block;
  width: 100%;
  height: min(78vh, 920px);
  border: 0;
  background: #fff;
}
.pdf__fallback {
  padding: 12px 16px 16px;
  margin: 0;
  font-size: 13px;
}

.toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 8, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  max-width: min(560px, calc(100% - 26px));
}

/* reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .identity {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .map__grid {
    grid-template-columns: 1fr;
  }
  .map__info {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .map__embedWrap,
  .map__embed {
    min-height: 320px;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .blog-grid,
  .blog-grid--archive {
    grid-template-columns: 1fr;
  }
  .hero__facts {
    grid-template-columns: 1fr;
  }
  .identity__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 980px) {
  .footerMega {
    grid-template-columns: 1fr;
  }
  .footerMega__desc {
    max-width: 70ch;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex;
  }
  .nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(10, 8, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
    transform-origin: top;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .nav__cta {
    text-align: center;
  }
}

