
:root {
 
  --majorelle: #654CD8;
  --portage:   #879AEA;
  --violet:    #C48FEA;
  --marble:    #E8EAEA;

  --ink:       #171346;
  --dark:      #2a2168;
  --dark-2:    #1d1650;
  --night:     #130f38;

  --paper:     #f3f4f6;
  --marble-2:  #dfe1e6;
  --muted:     #565a78;
  --muted-light:#a6abd9;

  --line:       rgba(23, 19, 70, 0.12);
  --line-strong:rgba(23, 19, 70, 0.20);
  --line-light: rgba(232, 234, 234, 0.16);
  --line-violet:rgba(135, 154, 234, 0.34);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;

  --hero-image: none;

  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--marble);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 32px;
}


.ic { display: inline-grid; place-items: center; flex: none; line-height: 0; }
.ic > svg { width: 100%; height: 100%; display: block; }


.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.eyebrow--light { color: var(--muted-light); }
.eyebrow__coord {
  color: var(--portage);
  padding: 4px 10px;
  border: 1px solid var(--line-violet);
  border-radius: 2px;
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 48px;
}
.idx {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--majorelle);
  letter-spacing: 0.1em;
  padding-top: 8px;
  position: relative;
}
.idx::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px; top: 0;
  height: 1px;
  background: var(--majorelle);
  opacity: 0.7;
}
.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section__head--light .section__title { color: var(--marble); }
.section__head--light .idx { color: var(--portage); }
.section__head--light .idx::after { background: var(--portage); }


.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(232, 234, 234, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav.is-scrolled .nav__inner { padding-block: 13px; }


.brand { display: flex; align-items: center; gap: 12px; color: var(--marble); }
.nav.is-scrolled .brand { color: var(--ink); }
.brand__mark { width: 40px; height: 40px; color: var(--portage); transition: color .4s var(--ease); }
.nav.is-scrolled .brand__mark { color: var(--majorelle); }
.brand__name {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--portage);
}
.nav.is-scrolled .brand__sub { color: var(--majorelle); }

.nav__menu { display: flex; align-items: center; gap: 8px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--marble);
  padding: 9px 15px;
  border-radius: 2px;
  position: relative;
  transition: color .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
  opacity: 0.86;
}
.nav.is-scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--portage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { opacity: 1; }

.nav__link--cta {
  border: 1px solid var(--portage);
  color: var(--portage);
  opacity: 1;
  margin-left: 6px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--portage); color: var(--ink); }
.nav.is-scrolled .nav__link--cta { border-color: var(--majorelle); color: var(--majorelle); }
.nav.is-scrolled .nav__link--cta:hover { background: var(--majorelle); color: var(--marble); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span {
  width: 24px; height: 1.8px;
  background: var(--marble);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .4s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 32px 90px;
  color: var(--marble);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--hero-image),
    radial-gradient(115% 90% at 82% 8%, rgba(101, 76, 216, 0.85) 0%, transparent 50%),
    radial-gradient(90% 80% at 5% 100%, rgba(196, 143, 234, 0.35) 0%, transparent 55%),
    linear-gradient(158deg, var(--dark) 0%, var(--dark-2) 55%, var(--night) 100%);
  background-size: cover;
  background-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 100% at 50% 0%, transparent 58%, rgba(11, 8, 34, 0.5) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(120% 90% at 18% 42%, #000 18%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 18% 42%, #000 18%, transparent 78%);
  opacity: 0.6;
}
.hero__meridian {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(60vw, 620px);
  color: var(--portage);
  opacity: 0.42;
}
.hero__orbit { animation: spin 46s linear infinite; transform-origin: 200px 200px; }

.hero__inner { position: relative; max-width: 860px; margin-inline: auto; width: 100%; }
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 26px 0 30px;
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--portage); }
.hero__lede {
  max-width: 560px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: rgba(232, 234, 238, 0.8);
  line-height: 1.62;
}
.hero__actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero__foot {
  position: relative;
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}
.hero__foot-line { flex: 1; height: 1px; background: var(--line-light); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.btn--primary { background: var(--majorelle); color: var(--marble); }
.btn--primary:hover { transform: translateY(-2px); background: #7358e2; box-shadow: 0 16px 34px -14px rgba(101, 76, 216, 0.7); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { border-color: rgba(232, 234, 238, 0.32); color: var(--marble); }
.btn--ghost:hover { border-color: var(--portage); color: var(--portage); transform: translateY(-2px); }


.section { padding: clamp(80px, 11vw, 148px) 0; position: relative; }


.about { background: var(--marble); }
.about__lead {
  max-width: 760px;
  margin-bottom: clamp(52px, 7vw, 84px);
  border-left: 3px solid var(--majorelle);
  padding-left: 30px;
}
.lead-kicker {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--majorelle);
  margin-bottom: 16px;
}
.lead-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.statement {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(30px, 4vw, 46px);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.statement:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 48px -30px rgba(23, 19, 70, 0.4);
}
.statement__ic { width: 40px; height: 40px; color: var(--majorelle); margin-bottom: 24px; }
.statement__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.42rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.statement__body { color: var(--muted); font-size: 1rem; }
.pillars { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.pillars li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.pillars li::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--majorelle);
  flex: none;
}


.legal {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(101,76,216,0.35) 0%, transparent 55%),
    var(--dark-2);
  color: var(--marble);
  padding: clamp(30px, 4vw, 46px);
  border-radius: 4px;
}
.legal__ic { width: 70px; height: 70px; color: var(--portage); margin-top: 2px; }
.legal__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--portage);
  margin-bottom: 14px;
}
.legal__text { color: rgba(232, 234, 238, 0.84); font-size: 1rem; max-width: 720px; }
.legal__agent { color: var(--marble); font-weight: 600; }
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--portage);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), gap .3s var(--ease), color .3s var(--ease);
}
.link-inline svg { width: 18px; height: 18px; }
.link-inline:hover { border-color: var(--portage); gap: 12px; }


.approach { background: var(--marble-2); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 38px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--majorelle);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 52px -32px rgba(23, 19, 70, 0.42);
}
.card:hover::before { transform: scaleY(1); }
.card__ic {
  width: 44px; height: 44px;
  color: var(--majorelle);
  margin-bottom: 22px;
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.card:hover .card__ic { transform: translateY(-2px); }
.card__kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--majorelle);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.card__kicker::before {
  content: "";
  width: 14px; height: 2px;
  background: var(--portage);
  flex: none;
}
.card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.card__body { color: var(--muted); font-size: 1rem; }


.focus {
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(101, 76, 216, 0.4) 0%, transparent 55%),
    var(--dark);
  color: var(--marble);
  position: relative;
  overflow: hidden;
}
.focus__intro {
  color: rgba(232, 234, 238, 0.72);
  max-width: 540px;
  margin: -24px 0 52px;
  font-size: 1.05rem;
}
/* 
.focus__list { display: flex; flex-direction: column; }
.focus__item {
  display: grid;
  grid-template-columns: auto 52px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 30px 6px;
  border-top: 1px solid var(--line-light);
  transition: padding-left .4s var(--ease);
  position: relative;
}
.focus__item:last-child { border-bottom: 1px solid var(--line-light); }
.focus__no {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--portage);
  letter-spacing: 0.1em;
}
.focus__ic { width: 42px; height: 42px; color: var(--muted-light); transition: color .4s var(--ease); }
.focus__label {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  transition: color .4s var(--ease);
}
.focus__arrow {
  width: 42px; height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--muted-light);
  transition: border-color .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
} */
/* .focus__arrow svg { width: 20px; height: 20px; } */

.focus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.focus-card {
  position: relative;
  padding: 40px 34px 34px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.focus-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--majorelle), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.focus-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-violet);
  background: linear-gradient(160deg, rgba(101, 76, 216, 0.16), rgba(255, 255, 255, 0.02));
}
.focus-card:hover::before { transform: scaleX(1); }
.focus-card__no {
  position: absolute;
  top: 28px; right: 30px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--portage);
  opacity: .75;
}
.focus-card__ic {
  display: inline-grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 18px;
  border: 1px solid var(--line-light);
  background: radial-gradient(120% 120% at 30% 20%, rgba(135, 154, 234, 0.18), rgba(135, 154, 234, 0.04));
  color: var(--portage);
  margin-bottom: 28px;
  transition: color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.focus-card__ic svg { width: 46px; height: 46px; }
.focus-card:hover .focus-card__ic {
  color: #fff;
  border-color: var(--line-violet);
  transform: translateY(-2px);
}
.focus-card__label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.focus-card__desc {
  color: rgba(232, 234, 238, 0.62);
  font-size: .96rem;
}


.focus__item:hover { padding-left: 20px; }
.focus__item:hover .focus__ic,
.focus__item:hover .focus__label { color: var(--portage); }
.focus__item:hover .focus__arrow { border-color: var(--portage); color: var(--portage); transform: scale(1.06); }


.intl { background: var(--marble); }
.intl__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intl__body {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 500px;
  margin-top: -18px;
}
.intl__markets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 38px;
  max-width: 440px;
}
.intl__markets li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 1.15rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.intl__markets .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--majorelle);
  flex: none;
  box-shadow: 0 0 0 4px rgba(101, 76, 216, 0.16);
}
.intl__map { color: var(--majorelle); display: grid; place-items: center; }
.intl__map svg { width: min(100%, 400px); }
.intl__globe { animation: spin 60s linear infinite; transform-origin: 170px 170px; }
.intl__nodes .node circle:first-child { fill: var(--violet); }
.intl__nodes .node__ring {
  fill: none;
  stroke: var(--violet);
  stroke-width: 1;
  opacity: 0.6;
  transform-origin: center;
  animation: pulse 3s ease-out infinite;
}
.intl__nodes .node:nth-child(2) .node__ring { animation-delay: .7s; }
.intl__nodes .node:nth-child(3) .node__ring { animation-delay: 1.4s; }
.intl__nodes .node:nth-child(4) .node__ring { animation-delay: 2.1s; }


.contacts {
  background:
    radial-gradient(90% 120% at 100% 100%, rgba(196, 143, 234, 0.22) 0%, transparent 55%),
    var(--dark-2);
  color: var(--marble);
  position: relative;
  overflow: hidden;
}
/* .contacts::before {
  content: "";
  position: absolute;
  right: -150px; bottom: -150px;
  width: 460px; height: 460px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
} */
.contacts .wrap { position: relative; }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contacts__mark { width: 60px; height: 60px; color: var(--portage); margin-bottom: 26px; }
.contacts__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.contacts__tag {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--portage);
  margin-top: 16px;
}
.contacts__list { display: flex; flex-direction: column; }
.contacts__list li {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}
.contacts__list li:first-child { border-top: 1px solid var(--line-light); }
.contacts__ic {
  width: 46px; height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--portage);
}
.contacts__ic svg { width: 22px; height: 22px; }
.contacts__meta { display: flex; flex-direction: column; gap: 3px; }
.contacts__k {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.contacts__v { font-size: 1.12rem; font-weight: 500; }
.contacts__link { color: var(--marble); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), color .3s var(--ease); width: fit-content; }
.contacts__link:hover { color: var(--portage); border-color: var(--portage); }


.footer { background: var(--night); color: var(--marble); padding-top: 70px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line-light);
}
.brand__name--footer { color: var(--marble); font-size: 1.55rem; }
.brand__name--footer .brand__sub { color: var(--portage); }
.footer__note { color: var(--muted-light); margin-top: 16px; max-width: 280px; font-size: 0.95rem; }
.footer__cols { display: flex; gap: clamp(30px, 5vw, 68px); }
.footer__h {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--portage);
  margin-bottom: 14px;
}
.footer__col p, .footer__col a { color: rgba(232, 234, 238, 0.82); font-size: 0.98rem; line-height: 1.5; }
.footer__col a { border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.footer__col a:hover { border-color: var(--portage); }
.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 26px 34px;
  font-size: 0.82rem;
  color: var(--muted-light);
  gap: 20px;
  flex-wrap: wrap;
}
.footer__top { display: inline-flex; align-items: center; gap: 8px; color: var(--portage); transition: gap .3s var(--ease); }
.footer__top svg { width: 16px; height: 16px; }
.footer__top:hover { gap: 12px; }


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}



@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  
  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(19, 15, 56, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .nav.is-open::before { opacity: 1; visibility: visible; }

  .nav.is-open.is-scrolled {
    background: rgba(232, 234, 234, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 82vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 40px 34px;
    background: var(--dark);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,0.5);
  }
  .nav.is-open .nav__menu { transform: translateX(0); }
  .nav__link { color: var(--marble); font-size: 1.15rem; padding: 14px 8px; }
  .nav.is-scrolled .nav__link { color: var(--marble); }
  .nav__link::after { left: 8px; right: auto; width: 26px; }
  .nav__link--cta { margin-left: 0; margin-top: 14px; text-align: center; justify-content: center; display: flex; border-color: var(--portage); color: var(--portage); }
  .nav.is-scrolled .nav__link--cta { border-color: var(--portage); color: var(--portage); }

  .about__grid { grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr; }
  .intl__wrap { grid-template-columns: 1fr; }
  .intl__map { grid-row: 1; max-width: 360px; margin-inline: auto; }
  .contacts__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 22px; }
  .nav__inner { padding-inline: 22px; }
  .brand__name { font-size: 1.18rem; }
  .brand__sub { display: none; }
  .hero { padding: 128px 22px 70px; }
  .hero__foot { flex-wrap: wrap; gap: 12px; }
  .hero__meridian { opacity: 0.24; right: -30%; }
  .section__head { flex-direction: column; gap: 12px; margin-bottom: 38px; }
  .idx::after { display: none; }
  .legal { flex-direction: column; gap: 22px; }
  /* .focus__item { grid-template-columns: auto 1fr auto; gap: 16px; }
  .focus__item .focus__ic { display: none; } */
  .focus__grid { grid-template-columns: 1fr; }
  .intl__markets { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .footer__cols { flex-wrap: wrap; gap: 28px 44px; }
  .statement__body, .card__body { font-size: 0.98rem; }
}

:focus-visible {
  outline: 2px solid var(--majorelle);
  outline-offset: 3px;
  border-radius: 2px;
}
.focus :focus-visible, .contacts :focus-visible, .hero :focus-visible, .legal :focus-visible { outline-color: var(--portage); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__orbit, .intl__globe, .node__ring { animation: none !important; }
}
